summaryrefslogtreecommitdiff
path: root/include/bsd
diff options
context:
space:
mode:
Diffstat (limited to 'include/bsd')
-rw-r--r--include/bsd/stdlib.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/bsd/stdlib.h b/include/bsd/stdlib.h
index 9e1d640..bfe3027 100644
--- a/include/bsd/stdlib.h
+++ b/include/bsd/stdlib.h
@@ -1,7 +1,7 @@
/*
* Copyright © 2005 Aurelien Jarno
* Copyright © 2006 Robert Millan
- * Copyright © 2008, 2009, 2010 Guillem Jover
+ * Copyright © 2008-2011 Guillem Jover
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -52,6 +52,8 @@ const char *getprogname(void);
void setprogname(const char *);
int heapsort (void *, size_t, size_t, int (*)(const void *, const void *));
+int mergesort(void *base, size_t nmemb, size_t size,
+ int (*cmp)(const void *, const void *));
void *reallocf(void *ptr, size_t size);