* Added trailing semicolons to function defs in src/include/missing.h
authormiquels <miquels>
Fri, 18 Aug 2000 11:35:44 +0000 (11:35 +0000)
committermiquels <miquels>
Fri, 18 Aug 2000 11:35:44 +0000 (11:35 +0000)
src/include/missing.h

index a36e43b..ab6eaeb 100644 (file)
@@ -6,15 +6,15 @@
  *
  */
 #ifndef HAVE_STRNCASECMP
-extern int strncasecmp(char *s1, char *s2, int n)
+extern int strncasecmp(char *s1, char *s2, int n);
 #endif
 
 #ifndef HAVE_STRCASECMP
-extern int strcasecmp(char *s1, char *s2)
+extern int strcasecmp(char *s1, char *s2);
 #endif
 
 #ifndef HAVE_STRSEP
-extern char *strsep(char **stringp, const char *delim)
+extern char *strsep(char **stringp, const char *delim);
 #endif
 
 #ifdef NEED_DECLARATION_CRYPT