custom message type for VM_INFO
[minix3.git] / lib / libminc / fputs.c
blobcb871b706ced1f58cb6023dd66a50f710224db0f
1 #include <sys/cdefs.h>
2 #include "namespace.h"
3 #include <assert.h>
4 #include <stdio.h>
6 int fputs(const char *s, FILE *fp)
8 assert(fp == stdout || fp == stderr);
10 return puts(s);