Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 11 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /* $Header: c:\\cygwin\\cvsroot/Vert03/vertlib/compile_dummy_expr.c,v 1.1.1.1 2003/11/04 |
1 | /* $Header: c:\\cygwin\\cvsroot/Vert03/vertlib/compile_dummy_expr.c,v 1.1.1.1 2003/11/04 23:34:57 mjames Exp $ |
2 | * 23:34:57 mjames Exp $ $RCSid$ $File$ |
2 | * $RCSid$ |
- | 3 | * $File$ |
|
3 | * |
4 | * |
4 | * $Log: compile_dummy_expr.c,v $ |
5 | * $Log: compile_dummy_expr.c,v $ |
5 | * Revision 1.1.1.1 2003/11/04 23:34:57 mjames |
6 | * Revision 1.1.1.1 2003/11/04 23:34:57 mjames |
6 | * Imported into local repositrory |
7 | * Imported into local repositrory |
7 | * |
8 | * |
8 | * Revision 1.1 2002/10/02 19:37:30 MJAMES |
9 | * Revision 1.1 2002/10/02 19:37:30 MJAMES |
9 | * Moved dummy functions to a separate support file. |
10 | * Moved dummy functions to a separate support file. |
10 | * |
11 | * |
11 | * Used correct number of arguments to define_pin |
12 | * Used correct number of arguments to define_pin |
12 | * |
13 | * |
13 | */ |
14 | */ |
14 | #include "database.h" |
15 | #include <stdio.h> |
15 | #include "expression.h" |
16 | #include "expression.h" |
16 | #include "generic.h" |
17 | #include "generic.h" |
- | 18 | #include "database.h" |
|
17 | 19 | ||
18 | #include <stdio.h> |
- | |
19 | - | ||
20 | expression_t *compile_expression_from_string (char *s) |
20 | expression_t * compile_expression_from_string(char * s) |
21 | { |
21 | { |
22 | return NULL; |
22 | return NULL; |
23 | } |
23 | } |
- | 24 | ||
24 | 25 | ||
25 | /* dummy functions */ |
26 | /* dummy functions */ |
26 | void tidy_lex (void) |
27 | void tidy_lex(void) |
27 | { |
28 | { |
- | 29 | } |
|
28 | } |
30 |