1*433d6423SLionel Sambuc #include <sys/cdefs.h> 2*433d6423SLionel Sambuc #include "namespace.h" 3*433d6423SLionel Sambuc #include <assert.h> 4*433d6423SLionel Sambuc #include <stdio.h> 5*433d6423SLionel Sambuc fputs(const char * s,FILE * fp)6*433d6423SLionel Sambucint fputs(const char *s, FILE *fp) 7*433d6423SLionel Sambuc { 8*433d6423SLionel Sambuc assert(fp == stdout || fp == stderr); 9*433d6423SLionel Sambuc 10*433d6423SLionel Sambuc return puts(s); 11*433d6423SLionel Sambuc } 12