15 lines
251 B
C
15 lines
251 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
#ifndef UKERNEL_STDIO_H
|
|
# define UKERNEL_STDIO_H
|
|
|
|
|
|
/* prototypes */
|
|
int puts(char const * string);
|
|
|
|
#endif /* !UKERNEL_STDIO_H */
|