summaryrefslogtreecommitdiff
path: root/ld/obj.h
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1996-09-03 22:06:58 +0200
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:31:01 +0200
commit0936b9aeab611665645a4e6bafaded7ca76dd189 (patch)
treefe6384035e96adc260f621d27909be67ad2e724a /ld/obj.h
parente85ee07172eccafd9441362e774f7b184810d008 (diff)
downloaddev86-0936b9aeab611665645a4e6bafaded7ca76dd189.tar.gz
Import Dev86-0.0.7.tar.gzv0.0.7
Diffstat (limited to 'ld/obj.h')
-rw-r--r--ld/obj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/obj.h b/ld/obj.h
index e0a52dc..7159a5d 100644
--- a/ld/obj.h
+++ b/ld/obj.h
@@ -31,9 +31,9 @@
#endif
#ifdef MC6809 /* temp don't support alignment at all */
-# define roundup( num, boundary, type ) (num)
+# define ld_roundup( num, boundary, type ) (num)
#else
-# define roundup( num, boundary, type ) \
+# define ld_roundup( num, boundary, type ) \
(((num) + ((boundary) - 1)) & (type) ~((boundary) - 1))
#endif