home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / i386 / crt / crti.S < prev    next >
Encoding:
Text File  |  1994-11-09  |  271 b   |  20 lines

  1. #ifdef __i486__
  2. #define ALIGN_TEXT    .align    16,0x90
  3. #else
  4. #define ALIGN_TEXT    .align    4,0x90
  5. #endif
  6. #define ALIGN_DATA    .align    4
  7.  
  8.  
  9.     .section .init
  10.     .globl _init
  11.     .type _init,@function
  12.     ALIGN_TEXT
  13. _init:
  14.  
  15.     .section .fini
  16.     .globl _fini
  17.     .type _fini,@function
  18.     ALIGN_TEXT
  19. _fini:
  20.