diff options
author | Richard Braun <rbraun@sceen.net> | 2017-04-29 21:47:28 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-04-29 21:59:03 +0200 |
commit | 5a048710ee9dd4112ec467da29fef27ef18b0876 (patch) | |
tree | 6998b99fc74d459c00d0e3bd2d50c56502c24be2 /kern/syscnt.c | |
parent | d78a948f0a1d8b7b3385944c736d7cffd8ca67a7 (diff) |
New stdio.h standard header
Make kernel code obtain definitions for the printf family of functions
through the inclusion of the standard stdio.h header.
Diffstat (limited to 'kern/syscnt.c')
-rw-r--r-- | kern/syscnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/syscnt.c b/kern/syscnt.c index 74559ea5..5b479f36 100644 --- a/kern/syscnt.c +++ b/kern/syscnt.c @@ -15,13 +15,13 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <stdio.h> #include <string.h> #include <kern/atomic.h> #include <kern/init.h> #include <kern/list.h> #include <kern/mutex.h> -#include <kern/printf.h> #include <kern/spinlock.h> #include <kern/syscnt.h> |