Changeset 1294
- Timestamp:
- 09/29/08 15:41:52 (2 months ago)
- Files:
-
- 1.8.3/trunk/hdrs/externs.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/trunk/hdrs/externs.h
r1292 r1294 35 35 #define strcasecmp(s1,s2) _stricmp((s1), (s2)) 36 36 #else 37 externint strcasecmp(const char *s1, const char *s2);37 int strcasecmp(const char *s1, const char *s2); 38 38 #endif 39 39 #endif … … 43 43 #define strncasecmp(s1,s2,n) _strnicmp((s1), (s2), (n)) 44 44 #else 45 externint strncasecmp(const char *s1, const char *s2, size_t n);45 int strncasecmp(const char *s1, const char *s2, size_t n); 46 46 #endif 47 47 #endif … … 102 102 extern int restarting; 103 103 #ifdef SUN_OS 104 externint f_close(FILE * file);104 int f_close(FILE * file); 105 105 /** SunOS fclose macro */ 106 106 #define fclose(f) f_close(f); … … 511 511 const char *restrict string) 512 512 __attribute_malloc__; 513 const char *standard_tokens[2]; /* ## and #@ */513 extern const char *standard_tokens[2]; /* ## and #@ */ 514 514 char *trim_space_sep(char *str, char sep); 515 515 int do_wordcount(char *str, char sep); … … 635 635 636 636 /* From function.c and other fun*.c */ 637 externchar *strip_braces(char const *line);637 char *strip_braces(char const *line); 638 638 639 639 void save_regexp_context(struct re_save *);
