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