Removed spurious man page
authorfluffymormegil <mpread@chiark.greenend.org.uk>
Tue, 26 Apr 2011 23:16:57 +0000 (00:16 +0100)
committerfluffymormegil <mpread@chiark.greenend.org.uk>
Tue, 26 Apr 2011 23:16:57 +0000 (00:16 +0100)
man/libmormegil::div_up.3 [deleted file]

diff --git a/man/libmormegil::div_up.3 b/man/libmormegil::div_up.3
deleted file mode 100644 (file)
index d600de2..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-.TH "LIBMORMEGIL::DIV_UP" 3 "October 10, 2010" "libmormegil Version 1.0" "libmormegil User Manual"
-.SH NAME
-libmormegil::div_up \- integer divide rounding upwards
-.SH SYNOPSIS
-#include <libmormegil/mathops.hh>
-
-template<typename T> T libmormegil::div_up(T orig, T divisor);
-
-.SH DESCRIPTION
-.I libmormegil::div_up
-is a naively written template for upward-rounding integer division.
-
-This function exists because not all the world is an x86, and integer to
-floating point conversion is \fIpainfully\fIP awkward on at least one major
-load-store architecture.
-
-.SH RETURNS
-The rounded-up result of dividing \fIorig\fP by \fIdivisor\fP.
-
-.SH CAVEATS
-
-Implemented as naively as possible.
-
-May not do what you want if \fIorig\fP is negative. I happen to try to avoid
-dividing negative integers anyway.
-
-.SH AUTHOR
-Martin Read <mpread@chiark.greenend.org.uk>
-
-.SH SEE ALSO
-
-libmormegil(3)