From: Holger Lubitz Date: Mon, 20 Aug 2007 18:29:58 +0000 (+0200) Subject: use malloc attribute X-Git-Tag: v0.9.3~101^2^2^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bb295e3fd54a59b554ff5e2ff2d510ebf32f5f5;p=thirdparty%2Fipxe.git use malloc attribute --- diff --git a/src/include/string.h b/src/include/string.h index 210c3753a..a2894a3a3 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -41,9 +41,9 @@ int __pure memcmp(const void * cs,const void * ct, void * __pure memscan(const void * addr, int c, size_t size) __nonnull; char * __pure strstr(const char * s1,const char * s2) __nonnull; void * __pure memchr(const void *s, int c, size_t n) __nonnull; -char * strdup(const char *s) __nonnull; -char * strndup(const char *s, size_t n) __nonnull; +char * __malloc strdup(const char *s) __nonnull; +char * __malloc strndup(const char *s, size_t n) __nonnull; -extern const char * strerror ( int errno ); +extern const char * __pure strerror ( int errno ); #endif /* ETHERBOOT_STRING */