PennMUSH Community

Changeset 1294

Show
Ignore:
Timestamp:
09/29/08 15:41:52 (2 months ago)
Author:
shawnw
Message:

#7685: Fix another missing extern in a header.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/trunk/hdrs/externs.h

    r1292 r1294  
    3535#define strcasecmp(s1,s2) _stricmp((s1), (s2)) 
    3636#else 
    37 extern int strcasecmp(const char *s1, const char *s2); 
     37int strcasecmp(const char *s1, const char *s2); 
    3838#endif 
    3939#endif 
     
    4343#define strncasecmp(s1,s2,n) _strnicmp((s1), (s2), (n)) 
    4444#else 
    45 extern int strncasecmp(const char *s1, const char *s2, size_t n); 
     45int strncasecmp(const char *s1, const char *s2, size_t n); 
    4646#endif 
    4747#endif 
     
    102102extern int restarting; 
    103103#ifdef SUN_OS 
    104 extern int f_close(FILE * file); 
     104int f_close(FILE * file); 
    105105/** SunOS fclose macro */ 
    106106#define fclose(f) f_close(f); 
     
    511511                          const char *restrict string) 
    512512 __attribute_malloc__; 
    513     const char *standard_tokens[2];     /* ## and #@ */ 
     513    extern const char *standard_tokens[2];     /* ## and #@ */ 
    514514    char *trim_space_sep(char *str, char sep); 
    515515    int do_wordcount(char *str, char sep); 
     
    635635 
    636636/* From function.c and other fun*.c */ 
    637     extern char *strip_braces(char const *line); 
     637    char *strip_braces(char const *line); 
    638638 
    639639    void save_regexp_context(struct re_save *);