diff options
author | rsc <devnull@localhost> | 2005-11-26 15:38:59 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-11-26 15:38:59 +0000 |
commit | 7e8769cc2a0b68245fce260c1069f7450bcf674a (patch) | |
tree | 996a7cbf79f81fe522ae302234e0049b375a5fe4 /include | |
parent | bea503e7dc632b1f401b81fbdf784841e6d478a3 (diff) | |
download | plan9port-7e8769cc2a0b68245fce260c1069f7450bcf674a.tar.gz plan9port-7e8769cc2a0b68245fce260c1069f7450bcf674a.tar.bz2 plan9port-7e8769cc2a0b68245fce260c1069f7450bcf674a.zip |
move utf, fmt to libc
Diffstat (limited to 'include')
-rw-r--r-- | include/libc.h | 3 | ||||
-rw-r--r-- | include/u.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/libc.h b/include/libc.h index 65c23dd5..93fa1d05 100644 --- a/include/libc.h +++ b/include/libc.h @@ -9,6 +9,9 @@ extern "C" { #endif +#include <utf.h> +#include <fmt.h> + /* * Begin usual libc.h */ diff --git a/include/u.h b/include/u.h index ec78ef22..c3f0081f 100644 --- a/include/u.h +++ b/include/u.h @@ -33,8 +33,6 @@ extern "C" { #include <assert.h> #include <setjmp.h> #include <stddef.h> -#include <utf.h> -#include <fmt.h> #include <math.h> #include <ctype.h> /* for tolower */ |