repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.50~pre5.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
init.h
blob
2d98342704aa1a45c28e77abeb5c01b01b0d2609
1
/*
2
* init.h
3
*
4
* Magic to set up initializers
5
*/
6
7
#ifndef _INIT_H
8
#define _INIT_H 1
9
10
#include <inttypes.h>
11
12
#define COM32_INIT(x) static const void * const __COM32_INIT \
13
__attribute__((section(
".init_array"
),unused)) = (const void * const)&x
14
15
#endif
/* _INIT_H */