about summary refs log tree commit diff
path: root/misc/subr.h
diff options
context:
space:
mode:
Diffstat (limited to 'misc/subr.h')
-rw-r--r--misc/subr.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/misc/subr.h b/misc/subr.h
index 62c92c4..56448cc 100644
--- a/misc/subr.h
+++ b/misc/subr.h
@@ -11,13 +11,11 @@ int mkdirs(char *path);
 int vopen(int *resfd, int flags, const char *fmt, ...);
 
 void set_bit(uint8_t *bits, unsigned long index);
-int has_bit(uint8_t *bits, unsigned long index);
+int has_bit(const uint8_t *bits, unsigned long index);
 void clear_bit(uint8_t *bits, unsigned long index);
 
 int canon_path(const char *path, char **res);
 
-size_t round_to_page(size_t size);
-
 long rand_between(long min, long max);
 
 #endif