diff options
author | Florian Pritz <bluewind@xinu.at> | 2011-09-12 16:32:43 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2011-09-12 16:45:51 +0200 |
commit | e8ab09ac246806106a77a333246f42f3ce9ce835 (patch) | |
tree | c7aed3ed72480bcde139c3167d3db6296741f554 /Makefile | |
parent | 4d14c5c1e28b5f0f99eb31a28a01976da7787c30 (diff) |
rewrite format_bytes()
This removes the dependency on math.h/libm and is easier to understand.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ fb: fb.in sed 's|@VERSION@|$(VERSION)|; s|@LIBDIR@|$(LIBDIR)|' $< > $@ fb-helper: fb-helper.c - $(CC) $(CFLAGS) -lcurl -lm -o $@ $< + $(CC) $(CFLAGS) -lcurl -o $@ $< fb.1: fb.pod pod2man -c "" $< $@ |