8 lines
99 B
C
8 lines
99 B
C
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
char * ttyname(int fd) {
|
|
errno = ENOTSUP;
|
|
return NULL;
|
|
}
|