repo.or.cz
/
fvwm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add reminder to investigate recursive commands for 2.6
[fvwm.git]
/
libs
/
safemalloc.h
blob
0947fe4a4eab77c573e9cac479c4dd24bdb2145b
1
/* -*-c-*- */
2
3
/*
4
*
5
* Procedure:
6
* safe?alloc - mallocs/callocs specified space or exits if there's a
7
* problem
8
*
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
);