make configure attempt to catch broken floating point CFLAGS/defaults
[musl.git] / src / unistd / ctermid.c
blob1612770af158ce068e2b9a1ecc89c4d910d76edd
1 #include <stdio.h>
2 #include <string.h>
4 char *ctermid(char *s)
6 return s ? strcpy(s, "/dev/tty") : "/dev/tty";