Index: trunk/Ohana/src/opihi/include/pcontrol.h
===================================================================
--- trunk/Ohana/src/opihi/include/pcontrol.h	(revision 20047)
+++ trunk/Ohana/src/opihi/include/pcontrol.h	(revision 21153)
@@ -154,9 +154,9 @@
 // # define ABORT(STRING) { gprint (GP_ERR, "programming error: %s\n", STRING); raise (SIGINT); exit (2); }
 
-void InitPcontrol ();
-void FreePcontrol ();
+void InitPcontrol (void);
+void FreePcontrol (void);
 
 /*** StackOps.c ***/
-Stack *InitStack ();
+Stack *InitStack (void);
 void   FreeStack (Stack *stack);
 int    PushStack (Stack *stack, int where, void *object, int id, char *name);
@@ -173,5 +173,5 @@
 
 /*** CheckSystem.c ***/
-int   CheckSystem ();
+int   CheckSystem (void);
 void *CheckSystem_Threaded (void *data);
 int   CheckBusyJobs (float delay);
@@ -214,22 +214,22 @@
 
 /*** misc files ***/
-int    VerboseMode ();  // in verbose.c
+int    VerboseMode (void);  // in verbose.c
 void   gotsignal (int signum); // in pcontrol.c
 
 /*** IDops.c ***/
-void InitIDs ();
-IDtype NextJobID ();
-IDtype NextHostID ();
+void InitIDs (void);
+IDtype NextJobID (void);
+IDtype NextHostID (void);
 void PrintID (gpDest dest, IDtype ID);
 IDtype GetID (char *IDword);
 
 /*** CheckPoint.c ***/
-int SetCheckPoint ();
-int ClearCheckPoint ();
-int TestCheckPoint ();
+int SetCheckPoint (void);
+int ClearCheckPoint (void);
+int TestCheckPoint (void);
 
 /*** HostOps.c ***/
-void   InitHostStacks ();
-void   FreeHostStacks ();
+void   InitHostStacks (void);
+void   FreeHostStacks (void);
 Stack *GetHostStack (int StackID);
 char  *GetHostStackName (int StackID);
@@ -246,5 +246,5 @@
 void   DownHost (Host *host);
 void   OffHost (Host *host);
-int    DownHosts ();
+int    DownHosts (void);
 int    StopHost (Host *host);
 int    StopHostResponse (Host *host);
@@ -254,6 +254,6 @@
 int InitJobOutput (JobOutput *output);
 int ResetJobOutput (JobOutput *output);
-void   InitJobStacks ();
-void   FreeJobStacks ();
+void   InitJobStacks (void);
+void   FreeJobStacks (void);
 Stack *GetJobStack (int StackID);
 char  *GetJobStackName (int StackID);
