summaryrefslogtreecommitdiffstats
path: root/pw/bitmap.h
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-07-11 19:07:35 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-07-11 19:07:35 +0000
commitab201ea86e3ba0e5c0f870e75f204c8fcb866757 (patch)
tree8f482f4b7dc294edb0b09afc54ebc78f929a370f /pw/bitmap.h
parent01d4114cc7390474938f443c768924b73fc61430 (diff)
downloadpw-darwin-ab201ea86e3ba0e5c0f870e75f204c8fcb866757.tar.gz
pw-darwin-ab201ea86e3ba0e5c0f870e75f204c8fcb866757.tar.zst
pw-darwin-ab201ea86e3ba0e5c0f870e75f204c8fcb866757.zip
de-__P()
Diffstat (limited to 'pw/bitmap.h')
-rw-r--r--pw/bitmap.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/pw/bitmap.h b/pw/bitmap.h
index 94bd059..4d6cfe4 100644
--- a/pw/bitmap.h
+++ b/pw/bitmap.h
@@ -38,13 +38,13 @@ struct bitmap
};
__BEGIN_DECLS
-struct bitmap bm_alloc __P((int size));
-void bm_dealloc __P((struct bitmap * bm));
-void bm_setbit __P((struct bitmap * bm, int pos));
-void bm_clrbit __P((struct bitmap * bm, int pos));
-int bm_isset __P((struct bitmap * bm, int pos));
-int bm_firstunset __P((struct bitmap * bm));
-int bm_lastset __P((struct bitmap * bm));
+struct bitmap bm_alloc(int size);
+void bm_dealloc(struct bitmap * bm);
+void bm_setbit(struct bitmap * bm, int pos);
+void bm_clrbit(struct bitmap * bm, int pos);
+int bm_isset(struct bitmap * bm, int pos);
+int bm_firstunset(struct bitmap * bm);
+int bm_lastset(struct bitmap * bm);
__END_DECLS
#endif /* !_BITMAP_H */