mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-10 11:35:32 +01:00
14 lines
256 B
C
14 lines
256 B
C
#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
|