repo.or.cz
/
gzip.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
zdiff would exit 2 (error) rather than 1 for differences
[gzip.git]
/
primos
/
include
/
stdlib.h
blob
49fbfc38179d165528a8c088d39ce9166e79940f
1
/*
2
** stdlib.h
3
**
4
** Emulation of the Unix stdlib.h header file for PRIMOS
5
**
6
** Author: Peter Eriksson <pen@lysator.liu.se>
7
*/
8
9
#ifndef __STDLIB_H__
10
#define __STDLIB_H__
11
12
extern
char
*
malloc
();
13
extern
char
*
calloc
();
14
15
#endif
16