aboutsummaryrefslogtreecommitdiff
path: root/src/librc-misc.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-09-19 13:55:01 +0000
committerRoy Marples <roy@marples.name>2007-09-19 13:55:01 +0000
commita74dd430d5c513f1e4d8ed13d7865eb24ccc5494 (patch)
treea85f271e9d6979a3831497b9e9b219dc82c41c5a /src/librc-misc.c
parent77f9015f0bf09c5ef3c51009e21d8e687006c3e4 (diff)
Punt rc_xcalloc as nothing uses it
Diffstat (limited to 'src/librc-misc.c')
-rw-r--r--src/librc-misc.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/librc-misc.c b/src/librc-misc.c
index 87949059..ebf020e2 100644
--- a/src/librc-misc.c
+++ b/src/librc-misc.c
@@ -19,17 +19,6 @@
# define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
#endif
-void *rc_xcalloc (size_t n, size_t size)
-{
- void *value = calloc (n, size);
-
- if (value)
- return value;
-
- ERRX
-}
-librc_hidden_def(rc_xcalloc)
-
void *rc_xmalloc (size_t size)
{
void *value = malloc (size);