mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 02:15:31 +02:00
16 lines
267 B
C++
16 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;
|
||
|
}
|
||
|
|