This commit is contained in:
rsc 2006-06-26 05:47:59 +00:00
parent f936548b5e
commit df970459f9
6 changed files with 87 additions and 0 deletions

View file

@ -128,6 +128,7 @@ LIB9OFILES=\
nulldir.$O\
open.$O\
opentemp.$O\
pin.$O\
pipe.$O\
post9p.$O\
postnote.$O\

11
src/lib9/pin.c Normal file
View file

@ -0,0 +1,11 @@
#include <u.h>
#include <libc.h>
static void
nop(void)
{
}
void (*_pin)(void) = nop;
void (*_unpin)(void) = nop;