13 lines
127 B
C
13 lines
127 B
C
#include "../main.h"
|
|
/**
|
|
* main - puts works?
|
|
*/
|
|
int main(void)
|
|
{
|
|
char *str;
|
|
|
|
str = "hello\n";
|
|
_puts(str);
|
|
return (0);
|
|
}
|