diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-07-15 21:25:56 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-07-15 21:25:56 +0000 |
commit | 49cae071cd06977fb321ceb73e4d47d0b4e09eb8 (patch) | |
tree | 13813840cf50568f995886406d3870da4733ae98 /lib-src/cvtmail.c | |
parent | 13e48442929fea6257e82b79ab8ee3cd88b7e3a9 (diff) | |
download | emacs-49cae071cd06977fb321ceb73e4d47d0b4e09eb8.tar.gz |
[__GNU_LIBRARY__]: Use <string.h>.
Diffstat (limited to 'lib-src/cvtmail.c')
-rw-r--r-- | lib-src/cvtmail.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c index 20ef3412439..83242a988a9 100644 --- a/lib-src/cvtmail.c +++ b/lib-src/cvtmail.c @@ -36,6 +36,10 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> +#ifdef __GNU_LIBRARY__ +# include <string.h> +#endif + char *malloc (); char *realloc (); char *getenv (); |