-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathsymbol.c
More file actions
39 lines (34 loc) · 941 Bytes
/
symbol.c
File metadata and controls
39 lines (34 loc) · 941 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
/** **********************************************************************
** Module: Symbol \file symbol.c
** This module implements the Symbol abstraction.
** Constants:
** SYMBOL_NULL - the null Symbol
**
************************************************************************/
/*
* This code was developed with the support of the United States Government,
* and is not subject to copyright.
*
* $Log: symbol.c,v $
* Revision 1.6 1997/01/21 19:19:51 dar
* made C++ compatible
*
* Revision 1.5 1994/05/11 19:51:24 libes
* numerous fixes
*
* Revision 1.4 1993/10/15 18:48:48 libes
* CADDETC certified
*
* Revision 1.3 1992/08/18 17:23:43 libes
* no change
*
* Revision 1.2 1992/05/31 23:32:26 libes
* implemented ALIAS resolution
*
* Revision 1.1 1992/05/28 03:55:04 libes
* Initial revision
*/
#include "express/symbol.h"
/** Initialize the Symbol module */
void SYMBOLinitialize( void ) {
}