OSDN Git Service

* src/prototypes.h: updated.
authorarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sat, 22 Feb 2003 22:26:57 +0000 (22:26 +0000)
committerarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sat, 22 Feb 2003 22:26:57 +0000 (22:26 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/lha/lha/trunk@663 6a8cc165-1e22-0410-a132-eb4e3f353aba

src/prototypes.h

index 82942c5..a606c20 100644 (file)
@@ -116,7 +116,6 @@ unsigned int decode P_((struct interfacing *interface));
 long copyfile P_((FILE *f1, FILE *f2, long size, int text_flg, unsigned int *crcp));
 int encode_stored_crc P_((FILE *ifp, FILE *ofp, long size, long *original_size_var, long *write_size_var));
 boolean archive_is_msdos_sfx1 P_((char *name));
-int strcasecmp P_((const char *p1, const char *p2));
 int xsnprintf P_((char *dest, size_t size, char *fmt, ...));
 char *xstrchr P_((const char *s, int c));
 char *xstrrchr P_((const char *s, int c));
@@ -125,7 +124,7 @@ char *xmemrchr P_((const char *s, int c, size_t n));
 char *basename P_((char *s));
 
 /* lharc.c */
-RETSIGTYPE interrupt(int signo);
+RETSIGTYPE interrupt P_((int signo));
 /* util.c */
 #if !HAVE_MEMMOVE
 void *memmove P_((void *dst, const void *src, size_t cnt));
@@ -136,6 +135,9 @@ char *strdup P_((char *buf));
 #if !HAVE_MEMSET
 char *memset P_((char *s, int c, int n));
 #endif
+#if !HAVE_STRCASECMP
+int strcasecmp P_((const char *p1, const char *p2));
+#endif
 
 /* vsnprintf.c */
 #if !HAVE_VSNPRINTF