Put spaces around the / signs

This commit is contained in:
Steve Chamberlain 1991-04-19 01:04:55 +00:00
parent b0f368691e
commit 5f288d8af8
2 changed files with 4 additions and 4 deletions

View File

@ -13,11 +13,11 @@ SECTIONS
{
*(.data)
___DTOR_LIST__ = . ;
LONG((___CTOR_LIST__ - .)/4 -2)
LONG((___CTOR_LIST__ - .) / 4 -2)
*(___DTOR_LIST__)
LONG(0)
___CTOR_LIST__ = . ;
LONG((___end_list__ - .)/4 -2)
LONG((___end_list__ - .) / 4 -2)
*(___CTOR_LIST__)
LONG(0)
___end_list__ = . ;

View File

@ -15,11 +15,11 @@ SECTIONS
{
*(.data)
___DTOR_LIST__ = . ;
LONG((___CTOR_LIST__ - .)/4 -2)
LONG((___CTOR_LIST__ - .) / 4 -2)
*(___DTOR_LIST__)
LONG(0)
___CTOR_LIST__ = . ;
LONG((_edata - .)/4 -2)
LONG((_edata - .) / 4 -2)
*(___CTOR_LIST__)
LONG(0)
_edata = .;