X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/9775d6ab66dc59e05f0daa4f6048d24bc7989602..c1c2c8ff6048202e9f682948b86772f98145610c:/popt/system.h diff --git a/popt/system.h b/popt/system.h index 6f496ed5..50cecaf5 100644 --- a/popt/system.h +++ b/popt/system.h @@ -75,7 +75,7 @@ void * alloca (size_t __size) # else # ifdef HAVE_ALLOCA # ifndef alloca /* predefined by HP cc +Olibcalls */ -char *alloca (); +char *alloca(size_t size); # endif # else # ifdef alloca @@ -85,19 +85,31 @@ char *alloca (); # endif # endif # endif -#elif defined(__GNUC__) && defined(__STRICT_ANSI__) +#elif !defined(alloca) #define alloca __builtin_alloca #endif -/*@-redecl -redef@*/ -/*@mayexit@*/ /*@only@*/ /*@unused@*/ -char * xstrdup (const char *str) - /*@*/; -/*@=redecl =redef@*/ +#ifndef HAVE_STRLCPY +size_t strlcpy(char *d, const char *s, size_t bufsize); +#endif + +#ifndef HAVE_STRLCAT +size_t strlcat(char *d, const char *s, size_t bufsize); +#endif #if HAVE_MCHECK_H && defined(__GNUC__) -#define vmefail() (fprintf(stderr, "virtual memory exhausted.\n"), exit(EXIT_FAILURE), NULL) -#define xstrdup(_str) (strcpy((malloc(strlen(_str)+1) ? : vmefail()), (_str))) +static inline char * +xstrdup(const char *s) +{ + size_t memsize = strlen(s) + 1; + char *ptr = malloc(memsize); + if (!ptr) { + fprintf(stderr, "virtual memory exhausted.\n"); + exit(EXIT_FAILURE); + } + strlcpy(ptr, s, memsize); + return ptr; +} #else #define xstrdup(_str) strdup(_str) #endif /* HAVE_MCHECK_H && defined(__GNUC__) */ @@ -106,14 +118,6 @@ char * xstrdup (const char *str) #define getenv(_s) __secure_getenv(_s) #endif -#ifndef HAVE_STRLCPY -size_t strlcpy(char *d, const char *s, size_t bufsize); -#endif - -#ifndef HAVE_STRLCAT -size_t strlcat(char *d, const char *s, size_t bufsize); -#endif - #if !defined HAVE_SNPRINTF || !defined HAVE_C99_VSNPRINTF #define snprintf rsync_snprintf int snprintf(char *str,size_t count,const char *fmt,...); @@ -123,12 +127,4 @@ int snprintf(char *str,size_t count,const char *fmt,...); #define PACKAGE "rsync" -#ifndef DBL_EPSILON -#define DBL_EPSILON 2.2204460492503131e-16 -#endif - -#ifdef _ABS -#undef _ABS -#endif - #include "popt.h"