10 lines
138 B
C
10 lines
138 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#define DEBUGPRINT fprintf (stderr, "debug in %d line\n", __LINE__)
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
DEBUGPRINT;
|
||
|
return 0;
|
||
|
}
|