blob: 0aba48546fee0169725153e38d3558d449ff8481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "busybox.h"
int tcsetattr(int fd UNUSED_PARAM, int mode UNUSED_PARAM, const struct termios *t UNUSED_PARAM)
{
return -1;
}
int tcgetattr(int fd UNUSED_PARAM, struct termios *t UNUSED_PARAM)
{
return -1;
}
|