repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vme: trivial spelling and capitalization fixes
[linux/fpc-iii.git]
/
arch
/
powerpc
/
math-emu
/
fre.c
blob
49ccf2cc6a5a88dc577a6977b90c24d88d5e1375
1
#include <linux/types.h>
2
#include <linux/errno.h>
3
#include <asm/uaccess.h>
4
5
int
fre
(
void
*
frD
,
void
*
frB
)
6
{
7
#ifdef DEBUG
8
printk
(
"%s: %p %p
\n
"
,
__func__
,
frD
,
frB
);
9
#endif
10
return
-
ENOSYS
;
11
}