blob: 71244dc849655fc9bce8ad2df7bf9675f4fede6e (
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
25
26
27
28
|
/*
* The Unix Channel
*
* by Michel Beaudouin-Lafon
*
* Copyright 1990-1993
* Laboratoire de Recherche en Informatique (LRI)
*
* General definitions
*
* $Id$
* $CurLog$
*/
#ifndef UchGlobal_H_
#define UchGlobal_H_
#ifndef NIL
#define NIL 0
#define Nil(type) ((type) NIL)
#endif /* NIL */
typedef void *pointer;
#include "ccu/bool.h"
#include "ccu/word.h"
#endif /* UchGlobal_H_ */
|