david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

use malloc attribute

This commit is contained in:
Holger Lubitz 2007-08-20 20:29:58 +02:00
parent 6f61e254dc
commit 8bb295e3fd
1 changed files with 3 additions and 3 deletions

View File

@ -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 */