Skip to content

Commit 4590e21

Browse files
committed
Include errno.h rather than sys/errno.h
1 parent da0a33e commit 4590e21

8 files changed

+7
-15
lines changed

aclients.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
#include <netinet/tcp.h>
7070
#include <fcntl.h>
7171
#include <termios.h>
72-
#include <sys/errno.h>
72+
#include <errno.h>
7373
#endif
7474

7575
#include <unistd.h>

kiss.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,8 @@ void kisspt_send_rec_packet (int chan, int kiss_cmd, unsigned char *fbuf, int f
115115
#include <sys/select.h>
116116
#include <sys/types.h>
117117
#include <sys/ioctl.h>
118-
119-
#ifdef __OpenBSD__
120118
#include <errno.h>
121-
#else
122-
#include <sys/errno.h>
123-
#endif
119+
124120

125121
#include "tq.h"
126122
#include "ax25_pad.h"

kissnet.c

-4
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,7 @@
106106
#include <sys/ioctl.h>
107107
#include <sys/socket.h>
108108
#include <netinet/in.h>
109-
#ifdef __OpenBSD__
110109
#include <errno.h>
111-
#else
112-
#include <sys/errno.h>
113-
#endif
114110
#endif
115111

116112
#include <unistd.h>

kissutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#else
4747

4848
#include <stdlib.h>
49-
#include <sys/errno.h>
49+
#include <errno.h>
5050
#include <sys/types.h>
5151
#include <sys/socket.h>
5252

serial_port.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#include <termios.h>
4545
#include <unistd.h>
4646
#include <sys/ioctl.h>
47-
#include <sys/errno.h>
47+
#include <errno.h>
4848

4949
#endif
5050

sock.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
#include <netinet/tcp.h>
5555
#include <fcntl.h>
5656
//#include <termios.h>
57-
#include <sys/errno.h>
57+
#include <errno.h>
5858

5959
#endif
6060

ttcalc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
#include <arpa/inet.h>
6060
#include <netinet/in.h>
6161
#include <netinet/tcp.h>
62-
#include <sys/errno.h>
62+
#include <errno.h>
6363
#endif
6464

6565
#include <unistd.h>

waypoint.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#else
4242
#include <stdlib.h>
4343
#include <ctype.h>
44-
#include <sys/errno.h>
44+
#include <errno.h>
4545
#endif
4646

4747
#include <assert.h>

0 commit comments

Comments
 (0)