blob: f9218509908c0fb168ad2a624fd21c47415ca3c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <stdlib.h>
exec sql include ../regression;
/* just a test comment */ int i;
/* just a test comment int j*/;
/****************************************************************************/
/* Test comment */
/*--------------------------------------------------------------------------*/
int main(void)
{
ECPGdebug(1, stderr);
exec sql --this is a comment too
connect to REGRESSDB1;
exec sql disconnect;
exit (0);
}
|