diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 17:51:52 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 17:51:52 +0000 |
commit | cb236290e267f17d5f81a18d742b81f1b74b05a2 (patch) | |
tree | e6c74acdaa0881bb8accab285d77f146381b2f81 /xmalloc.c | |
parent | 7b11f0ff9972d8046e69f98948fdab26b5199caf (diff) | |
download | fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.tar.gz fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.tar.bz2 fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.zip |
Prototypes everywhere.
svn path=/trunk/; revision=515
Diffstat (limited to 'xmalloc.c')
-rw-r--r-- | xmalloc.c | 30 |
1 files changed, 14 insertions, 16 deletions
@@ -19,26 +19,24 @@ #endif XMALLOCTYPE * -xmalloc (n) -int n; +xmalloc (int n) { - XMALLOCTYPE *p; + XMALLOCTYPE *p; - p = (XMALLOCTYPE *) malloc(n); - if (p == (XMALLOCTYPE *) 0) { - fputs("fetchmail: malloc failed\n",stderr); - exit(PS_UNDEFINED); - } - return(p); + p = (XMALLOCTYPE *) malloc(n); + if (p == (XMALLOCTYPE *) 0) { + fputs("fetchmail: malloc failed\n",stderr); + exit(PS_UNDEFINED); + } + return(p); } -char *xstrdup(s) -char *s; -{ - char *p; - p = (char *) xmalloc(strlen(s)+1); - strcpy(p,s); - return p; +char *xstrdup(char *s) +{ + char *p; + p = (char *) xmalloc(strlen(s)+1); + strcpy(p,s); + return p; } /* xmalloc.c ends here */ |