(__builtin___memcpy_chk): Define away to

avoid warnings with older compiler. 
(__builtin___memcpy_chk): Likewise. 
(__builtin___memmove_chk: Likewise. 
(__builtin___mempcpy_chk): Likewise. 
(__builtin___memset_chk): Likewise. 
(__builtin___stpcpy_chk): Likewise. 
(__builtin___strcat_chk): Likewise. 
(__builtin___strcpy_chk): Likewise. 
(__builtin___strncat_chk): Likewise. 
(__builtin___strncpy_chk): Likewise. 
(__builtin_object_size): Likewise.
This commit is contained in:
Andreas Jaeger 2005-03-28 07:09:47 +00:00
parent a0dd3094ab
commit f864df7fc7
1 changed files with 13 additions and 0 deletions

View File

@ -37,4 +37,17 @@ nop (void)
/* Following here we need an #include for each public header file
that uses __warndecl. */
/* Define away to avoid warnings with compilers that do not have these
builtins. */
#define __builtin___memcpy_chk(dest, src, len, bos) NULL
#define __builtin___memmove_chk(dest, src, len, bos) NULL
#define __builtin___mempcpy_chk(dest, src, len, bos) NULL
#define __builtin___memset_chk(dest, ch, len, bos) NULL
#define __builtin___stpcpy_chk(dest, src, bos) NULL
#define __builtin___strcat_chk(dest, src, bos) NULL
#define __builtin___strcpy_chk(dest, src, bos) NULL
#define __builtin___strncat_chk(dest, src, len, bos) NULL
#define __builtin___strncpy_chk(dest, src, len, bos) NULL
#define __builtin_object_size(bos, level) 0
#include <string.h>