diff options
author | Stu Grossman <grossman@cygnus> | 1993-04-08 04:12:56 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1993-04-08 04:12:56 +0000 |
commit | b83bf6b37085a25d519665d3093f7925ef99cbc7 (patch) | |
tree | 54e856dca5ebc6dd538d42081e3e6fcac5ec0369 /gdb/go32-xdep.c | |
parent | 0742a6fded3e758672537a4a422e292abc9630ad (diff) | |
download | gdb-b83bf6b37085a25d519665d3093f7925ef99cbc7.zip gdb-b83bf6b37085a25d519665d3093f7925ef99cbc7.tar.gz gdb-b83bf6b37085a25d519665d3093f7925ef99cbc7.tar.bz2 |
* ser-go32.c: Make it use serial port name.
* go32-xdep.c: Put in def for strlwr, needed by dir.o in go32 libc.
Diffstat (limited to 'gdb/go32-xdep.c')
-rw-r--r-- | gdb/go32-xdep.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/go32-xdep.c b/gdb/go32-xdep.c index 138c6a7..884a437 100644 --- a/gdb/go32-xdep.c +++ b/gdb/go32-xdep.c @@ -32,6 +32,10 @@ sigsetmask() { } -strlwr() +void +strlwr(str) + char *str; { + for (; *str; str++) + *str = tolower(*str); } |