summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-15 15:55:07 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-15 15:55:07 -0400
commit15096ace8030eebd4d451c9e0e00afee554f93fa (patch)
tree04cbef8699882d77360e5118ac50044f552c8d8e
parent7e33a29a03efc9040e0d95bec0986199648d9141 (diff)
remove unnecessary .. from includes
-rw-r--r--src/errno/__errno.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/errno/__errno.c b/src/errno/__errno.c
index b3016d32..9ab71722 100644
--- a/src/errno/__errno.c
+++ b/src/errno/__errno.c
@@ -1,5 +1,5 @@
#include <errno.h>
-#include "../_perthread.h"
+#include "_perthread.h"
/*
This version of __errno() is for single-threaded programs and those compiled
@@ -7,7 +7,7 @@ with _Thread_local support from C11 or later.
For programs that require per-thread errno without language support (i.e.
using pthreads), there is an identically signatured version of this function
-in ../pthread/__pt_errno.c which uses pthread keys.
+in pthread/__pt_errno.c which uses pthread keys.
*/
int *__errno(void)