[BACK]Return to config.h.post CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/config.h.post, Revision 1.9

1.1       kristaps    1: #if !defined(__BEGIN_DECLS)
                      2: #  ifdef __cplusplus
                      3: #  define      __BEGIN_DECLS           extern "C" {
                      4: #  else
                      5: #  define      __BEGIN_DECLS
                      6: #  endif
                      7: #endif
                      8: #if !defined(__END_DECLS)
                      9: #  ifdef __cplusplus
                     10: #  define      __END_DECLS             }
                     11: #  else
                     12: #  define      __END_DECLS
                     13: #  endif
                     14: #endif
                     15:
1.8       schwarze   16: #ifndef HAVE_FGETLN
                     17: extern char     *fgetln(FILE *, size_t *);
                     18: #endif
                     19: #ifndef HAVE_GETSUBOPT
                     20: extern int       getsubopt(char **, char * const *, char **);
                     21: extern char     *suboptarg;
                     22: #endif
1.9     ! schwarze   23: #ifndef HAVE_REALLOCARRAY
        !            24: extern void     *reallocarray(void *, size_t, size_t);
        !            25: #endif
1.7       schwarze   26: #ifndef HAVE_STRCASESTR
                     27: extern char     *strcasestr(const char *, const char *);
                     28: #endif
1.1       kristaps   29: #ifndef HAVE_STRLCAT
                     30: extern size_t    strlcat(char *, const char *, size_t);
                     31: #endif
                     32: #ifndef HAVE_STRLCPY
                     33: extern size_t    strlcpy(char *, const char *, size_t);
1.7       schwarze   34: #endif
1.8       schwarze   35: #ifndef HAVE_STRNLEN
                     36: extern size_t    strnlen(const char *, size_t);
                     37: #endif
1.7       schwarze   38: #ifndef HAVE_STRSEP
                     39: extern char     *strsep(char **, const char *);
1.4       kristaps   40: #endif
1.1       kristaps   41:
                     42: #endif /* MANDOC_CONFIG_H */

CVSweb