1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- memcmp(), memcpy() and memset() now build with the GCC 2.x compatibility

header files in place.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14708 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2004-08-14 10:00:33 +00:00
parent 16407d5389
commit a0c638e3d6
3 changed files with 35 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: string_memset.c,v 1.1.1.1 2004-07-26 16:32:17 obarthel Exp $
* $Id: string_memset.c,v 1.2 2004-08-14 10:00:33 obarthel Exp $
*
* :ts=4
*
@ -132,8 +132,16 @@ __memset(unsigned char * to,unsigned char value,size_t len)
/****************************************************************************/
/* This is ugly: GCC 2.95.x assumes that 'unsigned long'<27>is used in the built-in
memcmp/memcpy/memset functions instead of 'size_t'. This can produce warnings
where none are necessary. */
#if defined(__GNUC__) && (__GNUC__ < 3)
void *
memset(void *ptr, int val, unsigned long len)
#else
void *
memset(void *ptr, int val, size_t len)
#endif /* __GNUC__ && __GNUC__ < 3 */
{
void * result = ptr;
unsigned char * m = ptr;