diff options
author | Eric Busboom <ericb@src.gnome.org> | 2000-05-15 12:36:44 +0800 |
---|---|---|
committer | Eric Busboom <ericb@src.gnome.org> | 2000-05-15 12:36:44 +0800 |
commit | f8ff932ae3149c285acea3977a50596749d38584 (patch) | |
tree | 35b1dae583e169dda8f2ee7a31cf08dfc9658417 /libical/MacOS/strdup.c | |
parent | 8c965a2961ea6ae188a351be2671cfe63ac0a9ed (diff) | |
download | gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.gz gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.bz2 gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.lz gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.xz gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.tar.zst gsoc2013-evolution-f8ff932ae3149c285acea3977a50596749d38584.zip |
removing all files
svn path=/trunk/; revision=3040
Diffstat (limited to 'libical/MacOS/strdup.c')
-rw-r--r-- | libical/MacOS/strdup.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libical/MacOS/strdup.c b/libical/MacOS/strdup.c deleted file mode 100644 index ae60fee3df..0000000000 --- a/libical/MacOS/strdup.c +++ /dev/null @@ -1,17 +0,0 @@ - -#include "strdup.h" -#include <string.h> -#include <stdlib.h> - - -char *strdup(const char *s ) -{ - char *p; - - if ( (p = (char *) malloc( strlen( s ) + 1 )) == NULL ) - return( NULL ); - - strcpy( p, s ); - - return( p ); -} |