diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-03-04 03:15:22 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-03-04 03:15:22 -0500 |
commit | 921b86d6a1316585469fd0c1a2d876079925ec11 (patch) | |
tree | 266fea732d6944fc676141470b226642abc4baef /src/ctype/isblank.c | |
parent | 2c6147ab6c567babf07b85820e99f541e423614a (diff) |
fix path to _ctype.h
Diffstat (limited to 'src/ctype/isblank.c')
-rw-r--r-- | src/ctype/isblank.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctype/isblank.c b/src/ctype/isblank.c index 38d42ff9..aed70f98 100644 --- a/src/ctype/isblank.c +++ b/src/ctype/isblank.c @@ -1,7 +1,7 @@ #include <ctype.h> #include "limits.h" #include "locale.h" -#include "../_ctype.h" +#include "_ctype.h" #include "nonstd/assert.h" /** test whether a character is blank **/ |