5 lines
141 B
C
5 lines
141 B
C
|
|
/* This is how the size of an individual .o file's text segment
|
|
is rounded on a sun. */
|
|
|
|
#define FILEADDR_ROUND(addr) ((addr + 7) & -8)
|