summaryrefslogtreecommitdiff
path: root/ld/obj.h
diff options
context:
space:
mode:
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