mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-27 14:10:32 +00:00
12 lines
140 B
C
12 lines
140 B
C
|
|
char *strcpy(char *, const char *);
|
|
|
|
char *
|
|
ctermid(char *s)
|
|
{
|
|
if (s == 0)
|
|
return "/dev/tty";
|
|
strcpy(s, "/dev/tty");
|
|
return s;
|
|
}
|