home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / jump / libc-nys / genfuncs next >
Encoding:
Text File  |  1994-09-19  |  578 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. # Because we have fixed addressing (i.e. the functions cannot move position
  4. # in the library), then we can just `sed' out the wanted/unwanted functions
  5. # not present in the NYS library.
  6.  
  7. echo Automatically generating jump.funcs for NYS
  8.  
  9. sed    -e '13,15s/ T / U /' \
  10.     -e '19,21s/ T / U /' \
  11.     -e '776,789s/ U / T /' \
  12.     -e '859,862s/ T / U /' \
  13.     -e '1030s/ T / U /' \
  14.     -e '1034s/ T / U /' \
  15.     -e '1043s/ T / U /' \
  16.     -e '1045s/ T / U /' \
  17.     -e '1049,1050s/ T / U /' \
  18.     -e '1060s/ T / U /' \
  19.     -e '1063s/ T / U /' \
  20.     -e '1077,1228s/ U / T /' \
  21.     ../libc/jump.funcs > jump.funcs
  22.