int goo(int g) { int filedesc = open("testfile.txt", O_WRONLY | O_APPEND); } int foo(int f) { goo(2); } int main() { foo(1); }