Browse Source

Fix problem on HP

Andy Cedilnik 23 years ago
parent
commit
696d15c7ba
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Tests/COnly/foo.c
  2. 1 1
      Tests/COnly/foo.h

+ 1 - 1
Tests/COnly/foo.c

@@ -1 +1 @@
-const char* foo = "Foo";
+char* foo = "Foo";

+ 1 - 1
Tests/COnly/foo.h

@@ -1 +1 @@
-extern const char* foo;
+extern char* foo;