libDtHelp: Change to ANSI function definitions
authorPeter Howkins <flibble@users.sf.net>
Thu, 28 Jun 2018 02:53:31 +0000 (03:53 +0100)
committerPeter Howkins <flibble@users.sf.net>
Thu, 28 Jun 2018 02:53:31 +0000 (03:53 +0100)
cde/lib/DtHelp/Environ_c.c
cde/lib/DtHelp/Helpos.c
cde/lib/DtHelp/XbmUtils.c

index 8a6393fc3a465ef56d0f45e97ec46d5e2efa0698..00792d98df3dfeb0b97adb346f78ddaa56699c4c 100644 (file)
@@ -45,7 +45,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-char * _DtCliSrvGetDtUserSession()
+char * _DtCliSrvGetDtUserSession(void)
 {
   char * envVar = getenv("DTUSERSESSION");
   char * ret_envVar = NULL;
index 91b11ca376ccdfdad92563ae56196abaa4d5dcee..d88c7a02b10af1f4ae507cb3055b3d1856f5b79e 100644 (file)
@@ -390,7 +390,7 @@ char *_DtHelpGetMessage(
  *                 If that is NULL, returns NULL.
  *
  *****************************************************************************/
-char *_DtHelpGetLocale()
+char *_DtHelpGetLocale(void)
 {
     char *loc;
 
index 1a30ad3ffa37ff49e6b7051ccc73ef36a3995021..2052dfb800a20856d4e858c19b62bcea5c0dd8a0 100644 (file)
@@ -93,7 +93,7 @@ static short hexTable[256];           /* conversion value */
  *     Table index for the hex values. Initialized once, first time.
  *     Used for translation value or delimiter significance lookup.
  */
-static void initHexTable()
+static void initHexTable(void)
 {
     /*
      * We build the table at run time for several reasons:
@@ -124,8 +124,7 @@ static void initHexTable()
 /*
  *     read next hex value in the input stream, return -1 if EOF
  */
-static int NextInt (fstream)
-    _DtGrStream *fstream;
+static int NextInt (_DtGrStream *fstream)
 {
     int        ch;
     int        value = 0;