aboutsummaryrefslogtreecommitdiffstats
path: root/xmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c30
1 files changed, 14 insertions, 16 deletions
diff --git a/xmalloc.c b/xmalloc.c
index a58748a4..7bdd5303 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -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 */