summaryrefslogtreecommitdiff
path: root/include/bsd/stdlib.h
blob: 659d30e867a0a441f7b31ffd2ade14ac607ac297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LIBBSD_STDLIB_H
#define LIBBSD_STDLIB_H

#include <stdlib.h>

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