repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
regress
/
lib
/
csu
/
initfini
/
arch
/
m68k
/
initfini_asm.S
blob
738ce8c3bf99927617eb9c908c0e904762e98b8e
1
/* $NetBSD$ */
2
3
/*
4
* This file placed in the public domain.
5
* Klaus Klein, October 14, 2001.
6
*/
7
8
#include <machine/asm.h>
9
10
.section .init, "ax", @progbits
11
jsr _C_LABEL(i_am_init)
12
.previous
13
14
.section .fini, "ax", @progbits
15
jsr _C_LABEL(i_am_fini)
16
.previous