diff options
Diffstat (limited to 'gdb/ser-go32.c')
-rw-r--r-- | gdb/ser-go32.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ser-go32.c b/gdb/ser-go32.c index 2f3b99c..d9003b8 100644 --- a/gdb/ser-go32.c +++ b/gdb/ser-go32.c @@ -859,6 +859,13 @@ static struct serial_ops dos_ops = (void (*)(struct serial *, int))NULL /* change into async mode */ }; +int +gdb_pipe (int pdes[2]) +{ + /* No support for pipes. */ + errno = ENOSYS; + return -1; +} static void dos_info (char *arg, int from_tty) |