#ifndef _PUTS_H_ #define _PUTS_H_ #include int putchar(int c); int puts(const char *str); int putsn(const char *s, size_t maxlen); #endif