summaryrefslogtreecommitdiff
path: root/src/termios
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 20:00:37 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 20:00:37 -0400
commit73da506ee04ec490c5959b45c216a1f8508bec5b (patch)
treef356a994826be58341695dca611c3f324b511413 /src/termios
parentd82a95f6e907652151f658d140fcd47a26b70976 (diff)
consistently use <> for standardized headers
Diffstat (limited to 'src/termios')
-rw-r--r--src/termios/cfsetispeed.c2
-rw-r--r--src/termios/cfsetospeed.c2
-rw-r--r--src/termios/tcgetsid.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/termios/cfsetispeed.c b/src/termios/cfsetispeed.c
index a1e3ec5b..b13c8423 100644
--- a/src/termios/cfsetispeed.c
+++ b/src/termios/cfsetispeed.c
@@ -1,5 +1,5 @@
#include <termios.h>
-#include "errno.h"
+#include <errno.h>
#include "_assert.h"
int cfsetispeed(struct termios *termios_p, speed_t speed)
diff --git a/src/termios/cfsetospeed.c b/src/termios/cfsetospeed.c
index a2b36d6b..edb3f994 100644
--- a/src/termios/cfsetospeed.c
+++ b/src/termios/cfsetospeed.c
@@ -1,5 +1,5 @@
#include <termios.h>
-#include "errno.h"
+#include <errno.h>
#include "_assert.h"
int cfsetospeed(struct termios *termios_p, speed_t speed)
diff --git a/src/termios/tcgetsid.c b/src/termios/tcgetsid.c
index aa6c44de..4a202233 100644
--- a/src/termios/tcgetsid.c
+++ b/src/termios/tcgetsid.c
@@ -1,4 +1,4 @@
-#include "sys/types.h"
+#include <sys/types.h>
#include <termios.h>
pid_t tcgetsid(int fildes)