Removed double NAME entry.
[AROS.git] / compiler / clib / cfsetispeed.c
blobe66530fb8b327139959c248c1d09ddc699a020d8
1 #include <errno.h>
3 #include "__arosc_termios.h"
5 /* FIXME: Add autodoc */
6 int cfsetispeed(struct termios *__termios_p, speed_t speed)
8 if (__termios_p)
10 struct termios_intern *t = (struct termios_intern *)__termios_p;
11 t->c_ispeed = speed;
12 return 0;
14 else
16 errno = EINVAL;
17 return -1;