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