Simple compiler warning fixes in programs/dthelp.
authorDavid Cantrell <dcantrell@redhat.com>
Wed, 22 Aug 2012 01:53:33 +0000 (21:53 -0400)
committerDavid Cantrell <dcantrell@redhat.com>
Wed, 22 Aug 2012 01:53:33 +0000 (21:53 -0400)
cde/programs/dthelp/parser.ccdf/htag/build/build.c
cde/programs/dthelp/parser.ccdf/htag/build/eltree.c
cde/programs/dthelp/parser.ccdf/htag/util/context.c
cde/programs/dthelp/parser.ccdf/htag/util/wchar.c

index 5b763728b53d0fb4bba05e472ba4423163f8eb16..8c4cfd337902d40a683f8658d6dcf94182f413a0 100644 (file)
@@ -41,7 +41,7 @@ This product and information is proprietary of Tandem Computers Incorporated.
 #include "entdef.h"
 
 /* Main procedure */
-void main(argc, argv)
+int main(argc, argv)
 int argc ;
 char **argv ;
 {
@@ -71,4 +71,5 @@ while (TRUE)
     #include "case.c"
     if (m_token == ENDFILE) exit(FALSE) ;
     }
+return EXIT_SUCCESS;
 }
index 9f6038d3b314370691b13ed77d1fe1f2586f452c..e037d4dd97926d9ae369967b4f0591ea6d797a5f 100644 (file)
@@ -55,7 +55,7 @@ ELTSTRUCT *ntrelt(p)
     w_strcpy(new->enptr, p) ;
     new->model = M_NULLVAL ;
     new->content = M_NULLVAL ;
-    new->inptr = new->exptr = NULL ;
+    new->inptr = new->exptr = 0 ;
     new->parptr = NULL ;
     new->parindex = M_NULLVAL ;
     new->paramcount = M_NULLVAL ;
index 7423afde586a916987c7b946a6a2a417dfb74d2c..b98c3732844866e9309479861e1eb73c9a268229 100644 (file)
@@ -169,7 +169,7 @@ delim.h.
 #include "cont.h"
 
 /* Main procedure */
-void main(argc, argv)
+int main(argc, argv)
   int argc ;
   char **argv ;
 {
@@ -242,5 +242,5 @@ fprintf(context, "#define MAXD %d\n", maxd) ;
 dumptree((LOGICAL) (argc > 1)) ;
 fprintf(stderr, "NUMCON set to %d\n", NUMCON) ;
 fprintf(stderr, "NUMDELIM set to %d\n", NUMDELIM) ;
-exit(errexit) ;
+return errexit;
 }
index 053563a3f8964b7ca3084ae98f1ce61c65256565..aa2fc46cfc2ebd56ddc3b190a747775fe76c409e 100644 (file)
@@ -25,6 +25,7 @@
               Copyright 1992 Hewlett-Packard Co.
 */
 
+#include <string.h>
 #include "basic.h"