diff options
Diffstat (limited to 'src/unistd/ttyname.c')
| -rw-r--r-- | src/unistd/ttyname.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/unistd/ttyname.c b/src/unistd/ttyname.c new file mode 100644 index 00000000..2d4e3cab --- /dev/null +++ b/src/unistd/ttyname.c @@ -0,0 +1,12 @@ +#include "stddef.h" +#include "sys/types.h" +#include <unistd.h> + +char *ttyname(int fildes) +{ + (void)fildes; + return NULL; +} +/* +POSIX(1) +*/ |
