Fix DSO linker error (ld) with missing "-lfontconfig" for fontconfig
[fvwm.git] / libs / safemalloc.h
blob0947fe4a4eab77c573e9cac479c4dd24bdb2145b
1 /* -*-c-*- */
3 /*
5 * Procedure:
6 * safe?alloc - mallocs/callocs specified space or exits if there's a
7 * problem
9 */
10 char *safemalloc(int length);
11 char *safecalloc(int num, int length);
12 char *saferealloc(char *ptr, int length);
13 char *safestrdup(const char *s);