summaryrefslogtreecommitdiff
path: root/bin86-0.3/ld/align.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin86-0.3/ld/align.h')
-rw-r--r--bin86-0.3/ld/align.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin86-0.3/ld/align.h b/bin86-0.3/ld/align.h
deleted file mode 100644
index f34652c..0000000
--- a/bin86-0.3/ld/align.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * bin86/ld/align.h
- *
- * Copyright (C) 1992 Bruce Evans
- */
-
-/* align.h - memory alignment requirements for linker */
-
-#ifndef S_ALIGNMENT
-# define align(x)
-#else
-# define align(x) ((x) = (void *)(((int) (x) + (S_ALIGNMENT-1)) & ~(S_ALIGNMENT-1)))
- /* assumes sizeof(int) == sizeof(char *) */
-#endif