]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - pw/bitmap.h
Improve readability of the lists of options
[pw-darwin.git] / pw / bitmap.h
index 94bd059dc39985a514a2b2eb5bc9e206cdc62292..570c678237d5e145d86955b271ec900df407d461 100644 (file)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (C) 1996
  *     David L. Nugent.  All rights reserved.
  *
@@ -38,13 +40,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 */