summaryrefslogtreecommitdiff
path: root/include/bsd
diff options
context:
space:
mode:
authorRobert Millan <rmh@aybabtu.com>2006-03-29 13:55:22 +0000
committerGuillem Jover <guillem@hadrons.org>2008-05-06 08:54:07 +0300
commit3462d1261f2cd9ff26faaf4a0027c661b37af999 (patch)
treea83fe097d97da8679126c5f30436f242d53bed2f /include/bsd
parentdaccb6a8507c6eb35bb08177834ae15150acddab (diff)
downloadlibbsd-3462d1261f2cd9ff26faaf4a0027c661b37af999.tar.gz
Add heapsort
Diffstat (limited to 'include/bsd')
-rw-r--r--include/bsd/stdlib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bsd/stdlib.h b/include/bsd/stdlib.h
index 25c37e2..659d30e 100644
--- a/include/bsd/stdlib.h
+++ b/include/bsd/stdlib.h
@@ -8,4 +8,6 @@ const char *fmtcheck (const char *, const char *);
char *getprogname ();
void setprogname (char *);
+int heapsort (void *, size_t, size_t, int (*)(const void *, const void *));
+
#endif