mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
15 lines
267 B
C++
15 lines
267 B
C++
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("Running SpecialTestApp\n");
|
|
|
|
const char *path = "/tmp/dsftest.txt";
|
|
const char *mode = "a";
|
|
FILE* fd = fopen(path, mode);
|
|
fprintf(fd, "Running SpecialTestApp\n");
|
|
fclose(fd);
|
|
|
|
|
|
return 0;
|
|
}
|
|
|