blob: bc69310ac5e51da6518549e2b9a4e8fd54ea40c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* $Header: /cvsroot/src/usr.bin/patch/Attic/EXTERN.h,v 1.1 1993/04/09 11:33:51 cgd Exp $
*
* $Log: EXTERN.h,v $
* Revision 1.1 1993/04/09 11:33:51 cgd
* patch 2.0.12u8, from prep.ai.mit.edu. this is not under the GPL.
*
* Revision 2.0 86/09/17 15:35:37 lwall
* Baseline for netwide release.
*
*/
#ifdef EXT
#undef EXT
#endif
#define EXT extern
#ifdef INIT
#undef INIT
#endif
#define INIT(x)
#ifdef DOINIT
#undef DOINIT
#endif
|