aboutsummaryrefslogtreecommitdiffstats
path: root/pseudo_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'pseudo_util.c')
-rw-r--r--pseudo_util.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/pseudo_util.c b/pseudo_util.c
index 277b058..a4a14b4 100644
--- a/pseudo_util.c
+++ b/pseudo_util.c
@@ -421,14 +421,6 @@ pseudo_diag(char *fmt, ...) {
return wrote;
}
-/* given n, pick a multiple of block enough bigger than n
- * to give us some breathing room.
- */
-static inline size_t
-round_up(size_t n, size_t block) {
- return block * (((n + block / 4) / block) + 1);
-}
-
/* store pid in text form for prepending to messages */
void
pseudo_new_pid() {