dtsession: Change to ANSI function definitions
authorPeter Howkins <flibble@users.sf.net>
Thu, 28 Jun 2018 03:18:25 +0000 (04:18 +0100)
committerPeter Howkins <flibble@users.sf.net>
Thu, 28 Jun 2018 03:18:25 +0000 (04:18 +0100)
cde/programs/dtsession/SmCommun.c
cde/programs/dtsession/SmGlobals.c
cde/programs/dtsession/SmSave.c
cde/programs/dtsession/SmXSMP.c

index 5f50b71d1373f4626d43dab31287104df1942e59..b2d093a4448fb1e29a7d70deb0d7243225f921e2 100644 (file)
@@ -481,7 +481,7 @@ StartMsgServer(void)
  * 
  *************************************<->***********************************/
 static void 
-DtwmStarted()
+DtwmStarted(void)
 {
     smGD.dtwmRunning = True;
 } /* END OF FUNCTION  DtwmStarted */
@@ -940,11 +940,8 @@ ProcessReloadActionsDatabase(void)
 }
 
 void
-ProcessEvent(w, client_data, event, continue_to_dispatch)
-  Widget w;
-  XtPointer client_data;
-  XEvent *event;
-  Boolean *continue_to_dispatch;
+ProcessEvent(Widget w, XtPointer client_data, XEvent *event,
+             Boolean *continue_to_dispatch)
 {
   switch(event->type)
   {
index 24ba402faebaf16382bdd1f5944ea827d3e0254d..0bb24e7edd643581c35c1564b667b6f111c490b9 100644 (file)
@@ -959,7 +959,7 @@ SetResSet( void )
  *
  *************************************<->***********************************/
 void 
-UndoSetSavePath ( )
+UndoSetSavePath (void)
 {
        char                    * buf;
 
@@ -2637,7 +2637,7 @@ SmExit (
 }
 
 void
-SetSIGPIPEToDefault ()
+SetSIGPIPEToDefault (void)
 {
        struct sigaction pipeSig;
 
index e2f23074a8d48a415123fc59ba5972cdc9345c8f..6db2e4a544be6273ea2c27f06cc93a36b5a6dc95 100644 (file)
@@ -314,7 +314,7 @@ SaveState(
  *
  *************************************<->***********************************/
 int 
-CompleteSave ( )
+CompleteSave (void)
 {
 
   FILE                         *convertFP;
@@ -414,7 +414,7 @@ CompleteSave ( )
  * 
  *************************************<->***********************************/
 static void
-PruneSessionDirectory ()
+PruneSessionDirectory (void)
 {
        DIR                     * dirp;
        struct dirent           * dp;
@@ -588,7 +588,7 @@ PruneSessionDirectory ()
  *
  *************************************<->***********************************/
 static Boolean
-WriteClientDatabase ()
+WriteClientDatabase (void)
 {
        char                    *db;
        ClientDB                outputDB;
@@ -810,7 +810,7 @@ CheckRequiredProperties (
  *
  *************************************<->***********************************/
 void 
-NotifyProxyClients ( )
+NotifyProxyClients (void)
 {
   unsigned int                 topListLength, containedListLength;
   WindowInfo           * topList;      /* list of top-level windows */
index cc7b14fe634aa69177c1747f46cd67bcdb9e37e7..a162485571c129b2f54194b61ff4584a99f6571c 100644 (file)
@@ -186,7 +186,7 @@ void AddClient (
  * Functions
  */
 
-Boolean InitXSMP ( )
+Boolean InitXSMP (void)
 {
        char            errorMsg[ERRORMSGLEN];
        char            *env;
@@ -299,7 +299,7 @@ InitializeSaveState (
 }
 
 static void 
-InitializeXSMPGlobals ( )
+InitializeXSMPGlobals (void)
 {
        smXSMP.authDataEntries = NULL;
 
@@ -920,7 +920,7 @@ SaveYourselfDoneProc (
 
 
 static void
-ProcessSaveYourselfResponses ()
+ProcessSaveYourselfResponses (void)
 {
        ClientRecPtr            pClientRec;
        Boolean                 done = False;
@@ -1014,7 +1014,7 @@ CloseConnectionProc (
 }
 
 void
-CompleteXSMPSave ()
+CompleteXSMPSave (void)
 {
        ClientRecPtr            pClientRec;
 
@@ -1235,7 +1235,7 @@ Tt_callback_action GetWsmClientsHandler(
 
 
 static
-Boolean SendGetWsmClientsMessage ( )
+Boolean SendGetWsmClientsMessage (void)
 {
        Tt_message              message;
        Tt_status               status;
@@ -1270,7 +1270,7 @@ Boolean SendGetWsmClientsMessage ( )
 
 
 static 
-int GetCurrentWorkspaceNumber ()
+int GetCurrentWorkspaceNumber (void)
 {
        Atom                    currentWorkspace;
        Atom                    *workspaceList;
@@ -1300,7 +1300,7 @@ int GetCurrentWorkspaceNumber ()
 
 
 static 
-void CancelShutdown ()
+void CancelShutdown (void)
 {
        ClientRecPtr            pClientRec;
        char                    *pch;
@@ -1441,7 +1441,7 @@ MyIoErrorHandler (
 }    
 
 void
-InstallIOErrorHandler ()
+InstallIOErrorHandler (void)
 {
        IceIOErrorHandler default_handler;
 
@@ -1452,7 +1452,7 @@ InstallIOErrorHandler ()
 }
 
 
-void XSMPExit ( )
+void XSMPExit (void)
 {
        char            * pchar;