repo.or.cz
/
sfinx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
.
[sfinx.git]
/
include
/
platform.H
blob
4044ac1ab8b7ab28fe6b622480d538cc87f4b51e
1
2
/*
3
* Copyright (C) 2007, Rus V. Brushkoff, All rights reserved.
4
*/
5
6
#ifndef _PLATFORM_H_
7
#define _PLATFORM_H_
8
9
// hmm, do not know how elegant this has to be solved in 64bit platforms
10
#define to_voidp(x) ((void *)((unsigned long)(x)))
11
#define from_voidp(x) ((unsigned long)(x))
12
13
#endif