I see the following code in HPUX C program:
extern int fcntl __((int, int, ...));
_LF_EXTERN int creat __((const char *, mode_t));
These lines are compiled using aCC.
Could somebody let me know the meaning of 2 underscores after fcntl
and creat
in the above code?