repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
lib
/
libm
/
arch
/
m68060
/
makeoffs.awk
blob
47605a23faaf67fb8ccb2c07d2381c4e4ea675bc
1
BEGIN
{
FS
=
","
;
s =
-
16
;}
2
/
\.long
/{
s
+
=
16
;}
3
s
<
0
||
s
>
1023
{
print
$
0
}
4
s
>
=
0
&&
s
<
1024
{
\
5
printf
"ENTRY_NOPROFILE(__fplsp060_%04x) "
,
s
;
\
6
print
$
1
","
$
2
;
\
7
printf
"ENTRY_NOPROFILE(__fplsp060_%04x) "
,
s
+
8
;
\
8
print
" .long "
$
3
","
$
4
;
\
9
}