1 --- fputs.c.orig Tue May 20 15:22:42 2003
2 +++ fputs.c Thu Jul 31 13:19:02 2003
4 #include "libc_private.h"
7 +// 3340719: __puts_null__ is used if string is NULL. Defined in puts.c
8 +__private_extern__ char const __puts_null__[];
11 * Write the given string to the given file.
17 + // 3340719: __puts_null__ is used if s is NULL
20 iov.iov_base = (void *)s;
21 iov.iov_len = uio.uio_resid = strlen(s);