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

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;