repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
custom message type for VM_INFO
[minix3.git]
/
lib
/
libminc
/
fputs.c
blob
cb871b706ced1f58cb6023dd66a50f710224db0f
1
#include <sys/cdefs.h>
2
#include
"namespace.h"
3
#include <assert.h>
4
#include <stdio.h>
5
6
int
fputs
(
const char
*
s
,
FILE
*
fp
)
7
{
8
assert
(
fp
==
stdout
||
fp
==
stderr
);
9
10
return
puts
(
s
);
11
}