1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/plugins/org.eclipse.dd.tests.gdb/data/launch/src/GDBMIGenericTestApp.cc

15 lines
265 B
C++

#include <stdio.h>
int main() {
printf("Running Generic App\n");
const char *path = "/tmp/dsftest.txt";
const char *mode = "a";
FILE* fd = fopen(path, mode);
fprintf(fd, "Running Generic App\n");
fclose(fd);
return 0;
}