xref: /original-bsd/sys/tahoe/include/misc.c (revision 8af5b582)
1 /*	misc.c	1.2	85/07/29	*/
2 
3 #include "../h/types.h"
4 #include "../tahoe/mtpr.h"
5 
6 /*
7  * make sure addr is not in cache
8  */
9 
10 uncache(addr)
11 	char *addr;
12 {
13 	mtpr(PDCS, addr);
14 }
15