Update of /cvsroot/plib/plib/examples/src/psl/data
In directory usw-pr-cvs1:/tmp/cvs-serv13491/plib/examples/src/psl/data
Modified Files:
test.psl
Log Message:
Fixed #define and #undef to disallow tokens that aren't legal identifiers.
Index: test.psl
===================================================================
RCS file: /cvsroot/plib/plib/examples/src/psl/data/test.psl,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- test.psl 11 Sep 2002 05:27:58 -0000 1.14
+++ test.psl 12 Sep 2002 03:17:06 -0000 1.15
@@ -1,11 +1,11 @@
#include <data/header.psh>
-
-#define ONE 1
-#define TWO 2
+#define ONE 1
+#define TWO 2
#define THREE 3
#undef ONE
#define ONE (THREE-TWO)
+
void main ()
{
int i ;
|