diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-28 14:16:05 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-28 14:16:05 -0500 |
commit | 69315080f1665373a1753c351fee1251af0545a4 (patch) | |
tree | 61c6592146afeade2ad57d9e930a341510b571ae /src/ctype/toupper.c | |
parent | 80548c779ba2302b2a4256f15d6e5f66b5dcfb18 (diff) |
clean up internal namespace
Diffstat (limited to 'src/ctype/toupper.c')
-rw-r--r-- | src/ctype/toupper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctype/toupper.c b/src/ctype/toupper.c index f4611bc7..35b7c9e2 100644 --- a/src/ctype/toupper.c +++ b/src/ctype/toupper.c @@ -1,7 +1,7 @@ #include <ctype.h> #include "limits.h" #include "nonstd/assert.h" -#include "nonstd/internal.h" +#include "nonstd/ctype.h" /** convert a lowercase letter to uppercase **/ int toupper(int c) |