aboutsummaryrefslogtreecommitdiff
path: root/libbb/speed_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/speed_table.c')
-rw-r--r--libbb/speed_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/speed_table.c b/libbb/speed_table.c
index 94a296238..646f9146b 100644
--- a/libbb/speed_table.c
+++ b/libbb/speed_table.c
@@ -56,7 +56,7 @@ static const struct speed_map speeds[] = {
56 56
57enum { NUM_SPEEDS = ARRAY_SIZE(speeds) }; 57enum { NUM_SPEEDS = ARRAY_SIZE(speeds) };
58 58
59unsigned int tty_baud_to_value(speed_t speed) 59unsigned FAST_FUNC tty_baud_to_value(speed_t speed)
60{ 60{
61 int i = 0; 61 int i = 0;
62 62
@@ -72,7 +72,7 @@ unsigned int tty_baud_to_value(speed_t speed)
72 return 0; 72 return 0;
73} 73}
74 74
75speed_t tty_value_to_baud(unsigned int value) 75speed_t FAST_FUNC tty_value_to_baud(unsigned int value)
76{ 76{
77 int i = 0; 77 int i = 0;
78 78