summaryrefslogtreecommitdiffstats
path: root/lib/xstrdup.c
diff options
context:
space:
mode:
authorMark Wielaard <[email protected]>2015-09-22 22:27:01 +0200
committerMark Wielaard <[email protected]>2015-09-23 15:50:55 +0200
commit1ccdfb683ad6c7e59793136c3a657ddf131cafd1 (patch)
treed5d24ce4ca0beec37e1ee2fe1f8a36af0e218e28 /lib/xstrdup.c
parente260d79d73be07aee2860c5a5baf4f12c230ad6b (diff)
Remove old-style function definitions.
We already require -std=gnu99 and old-style function definitions might hide some compiler warnings. Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'lib/xstrdup.c')
-rw-r--r--lib/xstrdup.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/xstrdup.c b/lib/xstrdup.c
index d9d6010c..aa10352a 100644
--- a/lib/xstrdup.c
+++ b/lib/xstrdup.c
@@ -1,5 +1,5 @@
/* Convenience function for string allocation.
- Copyright (C) 2006 Red Hat, Inc.
+ Copyright (C) 2006, 2015 Red Hat, Inc.
This file is part of elfutils.
This file is free software; you can redistribute it and/or modify
@@ -36,8 +36,7 @@
/* Return a newly allocated copy of STRING. */
char *
-xstrdup (string)
- const char *string;
+xstrdup (const char *string)
{
return strcpy (xmalloc (strlen (string) + 1), string);
}