diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-01-11 07:19:08 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-01-11 07:19:08 +0100 |
commit | 4a6def1aebcb61599f9d975e92079aad5bb423c6 (patch) | |
tree | 65d7ae5520822cc10b79ef5d421672f5b7d6f435 /util/strsep.c | |
parent | 15db9438f7a852643bb2b5e81e67de4eb805b173 (diff) | |
download | mupdf-4a6def1aebcb61599f9d975e92079aad5bb423c6.tar.xz |
rename apps directory and reorganize macpdf.app
Diffstat (limited to 'util/strsep.c')
-rw-r--r-- | util/strsep.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/strsep.c b/util/strsep.c index e54903ce..e3592c2a 100644 --- a/util/strsep.c +++ b/util/strsep.c @@ -1,3 +1,5 @@ +#ifdef NEED_STRSEP + #include <string.h> char *strsep(char **stringp, const char *delim) @@ -9,3 +11,5 @@ char *strsep(char **stringp, const char *delim) return ret; } +#endif + |