1*7c478bd9Sstevel@tonic-gate /* DO NOT EDIT: automatically built by dist/distrib. */ 2*7c478bd9Sstevel@tonic-gate #ifndef _clib_ext_h_ 3*7c478bd9Sstevel@tonic-gate #define _clib_ext_h_ 4*7c478bd9Sstevel@tonic-gate #ifdef __STDC__ 5*7c478bd9Sstevel@tonic-gate void err __P((int eval, const char *, ...)); 6*7c478bd9Sstevel@tonic-gate #else 7*7c478bd9Sstevel@tonic-gate void err(); 8*7c478bd9Sstevel@tonic-gate #endif 9*7c478bd9Sstevel@tonic-gate #ifdef __STDC__ 10*7c478bd9Sstevel@tonic-gate void errx __P((int eval, const char *, ...)); 11*7c478bd9Sstevel@tonic-gate #else 12*7c478bd9Sstevel@tonic-gate void errx(); 13*7c478bd9Sstevel@tonic-gate #endif 14*7c478bd9Sstevel@tonic-gate #ifdef __STDC__ 15*7c478bd9Sstevel@tonic-gate void warn __P((const char *, ...)); 16*7c478bd9Sstevel@tonic-gate #else 17*7c478bd9Sstevel@tonic-gate void warn(); 18*7c478bd9Sstevel@tonic-gate #endif 19*7c478bd9Sstevel@tonic-gate #ifdef __STDC__ 20*7c478bd9Sstevel@tonic-gate void warnx __P((const char *, ...)); 21*7c478bd9Sstevel@tonic-gate #else 22*7c478bd9Sstevel@tonic-gate void warnx(); 23*7c478bd9Sstevel@tonic-gate #endif 24*7c478bd9Sstevel@tonic-gate #ifndef HAVE_GETCWD 25*7c478bd9Sstevel@tonic-gate char *getcwd __P((char *, size_t)); 26*7c478bd9Sstevel@tonic-gate #endif 27*7c478bd9Sstevel@tonic-gate void get_long __P((char *, long, long, long *)); 28*7c478bd9Sstevel@tonic-gate #ifndef HAVE_GETOPT 29*7c478bd9Sstevel@tonic-gate int getopt __P((int, char * const *, const char *)); 30*7c478bd9Sstevel@tonic-gate #endif 31*7c478bd9Sstevel@tonic-gate #ifndef HAVE_MEMCMP 32*7c478bd9Sstevel@tonic-gate int memcmp __P((const void *, const void *, size_t)); 33*7c478bd9Sstevel@tonic-gate #endif 34*7c478bd9Sstevel@tonic-gate #ifndef HAVE_MEMCPY 35*7c478bd9Sstevel@tonic-gate void *memcpy __P((void *, const void *, size_t)); 36*7c478bd9Sstevel@tonic-gate #endif 37*7c478bd9Sstevel@tonic-gate #ifndef HAVE_MEMMOVE 38*7c478bd9Sstevel@tonic-gate void *memmove __P((void *, const void *, size_t)); 39*7c478bd9Sstevel@tonic-gate #endif 40*7c478bd9Sstevel@tonic-gate #ifndef HAVE_RAISE 41*7c478bd9Sstevel@tonic-gate int raise __P((int)); 42*7c478bd9Sstevel@tonic-gate #endif 43*7c478bd9Sstevel@tonic-gate #ifndef HAVE_SNPRINTF 44*7c478bd9Sstevel@tonic-gate #ifdef __STDC__ 45*7c478bd9Sstevel@tonic-gate int snprintf __P((char *, size_t, const char *, ...)); 46*7c478bd9Sstevel@tonic-gate #else 47*7c478bd9Sstevel@tonic-gate int snprintf(); 48*7c478bd9Sstevel@tonic-gate #endif 49*7c478bd9Sstevel@tonic-gate #endif 50*7c478bd9Sstevel@tonic-gate #ifndef HAVE_STRERROR 51*7c478bd9Sstevel@tonic-gate char *strerror __P((int)); 52*7c478bd9Sstevel@tonic-gate #endif 53*7c478bd9Sstevel@tonic-gate #ifndef HAVE_STRSEP 54*7c478bd9Sstevel@tonic-gate char *strsep __P((char **, const char *)); 55*7c478bd9Sstevel@tonic-gate #endif 56*7c478bd9Sstevel@tonic-gate #ifndef HAVE_VSNPRINTF 57*7c478bd9Sstevel@tonic-gate int vsnprintf(); 58*7c478bd9Sstevel@tonic-gate #endif 59*7c478bd9Sstevel@tonic-gate #endif /* _clib_ext_h_ */ 60