summaryrefslogtreecommitdiff
path: root/termios
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-24 14:31:03 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-24 14:31:03 +0000
commit8c0c3e6dc4b2f7ba94771ff1fcf6adc332f42fde (patch)
tree2057c46f81d58277a901b55128f603de43468c20 /termios
parentc3f556889baf6269787fa847470c46ef2a378c85 (diff)
Update.
* termios/cfsetspeed.c: Make code cleaner and add missing const. Patch by Joe Keane <jgk@jgk.org>.
Diffstat (limited to 'termios')
-rw-r--r--termios/cfsetspeed.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/termios/cfsetspeed.c b/termios/cfsetspeed.c
index 91f420163e..d183f45c1e 100644
--- a/termios/cfsetspeed.c
+++ b/termios/cfsetspeed.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1993, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1993, 1996, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -20,11 +20,13 @@
#include <errno.h>
#include <stddef.h>
-static struct speed_struct
+struct speed_struct
{
speed_t value;
speed_t internal;
-} speeds[] =
+};
+
+static const struct speed_struct speeds[] =
{
#ifdef B0
{ 0, B0 },