diff options
author | Dan Winship <danw@src.gnome.org> | 2002-04-02 00:29:14 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-04-02 00:29:14 +0800 |
commit | 2a6e7401b29cb98b7c6f2ccc0a5694241d155d12 (patch) | |
tree | f12954fe2f7492f82751f3b7ab8fce8b3f127705 /libversit/vobject.c | |
parent | 2c202400a4a483ce03508b81e59372d83fe9903c (diff) | |
download | gsoc2013-evolution-2a6e7401b29cb98b7c6f2ccc0a5694241d155d12.tar.gz gsoc2013-evolution-2a6e7401b29cb98b7c6f2ccc0a5694241d155d12.tar.zst gsoc2013-evolution-2a6e7401b29cb98b7c6f2ccc0a5694241d155d12.zip |
Darwin/OS X portability from Max Horn <max@quendi.de>
* libversit/vcc.y: Remove #include <malloc.h>.
* libversit/vobject.c: Likewise, and #include <stdlib.h>
svn path=/trunk/; revision=16308
Diffstat (limited to 'libversit/vobject.c')
-rw-r--r-- | libversit/vobject.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libversit/vobject.c b/libversit/vobject.c index 2df57c5927..93f5c163dc 100644 --- a/libversit/vobject.c +++ b/libversit/vobject.c @@ -42,11 +42,8 @@ DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. * vobject, and convert a vobject into its textual representation. */ -#ifndef MWERKS -#include <malloc.h> -#endif - #include "vobject.h" +#include <stdlib.h> #include <string.h> #include <stdio.h> #include <fcntl.h> |