diff options
author | Thomas G. Lockhart | 2002-04-21 19:51:44 +0000 |
---|---|---|
committer | Thomas G. Lockhart | 2002-04-21 19:51:44 +0000 |
commit | 3fab49325de7924b051ea25ee8d1436d3aff6b28 (patch) | |
tree | 4dbf77e3c57b0971847d1b5ad8c33d29846a7832 | |
parent | 37cfb040949057a0a07ef0652d5c546ab27655d5 (diff) |
Include stdio.h and stdlib.h for completeness.
-rw-r--r-- | src/interfaces/ecpg/test/test1.pgc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/test/test1.pgc b/src/interfaces/ecpg/test/test1.pgc index 15c275a082d..78771d944d5 100644 --- a/src/interfaces/ecpg/test/test1.pgc +++ b/src/interfaces/ecpg/test/test1.pgc @@ -1,5 +1,7 @@ #include <stdlib.h> #include <string.h> +#include <stdlib.h> +#include <stdio.h> /* just a test comment */ exec sql whenever sqlerror do PrintAndStop(msg); exec sql whenever sqlwarning do warn(); |