hdt: Fixing automatic mode parsing
[syslinux.git] / com32 / lib / fputs.c
blob84f0c89aa3a6c12dd7401384b457a99718fcb5d2
1 /*
2 * fputs.c
4 * This isn't quite fputs() in the stdio sense, since we don't
5 * have stdio, but it takes a file descriptor argument instead
6 * of the FILE *.
7 */
9 #include <stdio.h>
10 #include <string.h>
12 int fputs(const char *s, FILE * file)
14 return _fwrite(s, strlen(s), file);