First sources for test build infrastructure
[swifty.git] / src / lib_swift.c
1 #include <stdio.h>
2 #include "lib_swift.h"
3
4
5 #ifdef DEBUG
6 #define Dprintf(msg,...) printf("[%s]:%d" msg, __FILE__, __LINE__, ##__VA_ARGS__)
7 #else
8 #define Dprintf(msg,...)                /* do nothing */
9 #endif
10
11
12 void f() 
13 {
14         Dprintf("TESTARE in PLM");
15         
16         printf("Current file name %s\n", __FILE__);
17         printf("Current line %d in file %s\n", __LINE__, __FILE__);
18 }