repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/adflib: build only host variant which is used by Sam440 target
[AROS.git]
/
workbench
/
network
/
stacks
/
AROSTCP
/
libkvm
/
kvm_geterr.c
blob
ef47b3d051e587ec9278872c8b014627259454b5
1
#include <exec/types.h>
2
#include <kvm.h>
3
#include
"kvm_errors.h"
4
5
char
*
kvm_errors
[] = {
6
"Permission denied"
,
7
"Invalid address"
8
};
9
10
char
*
kvm_geterr
(
kvm_t
*
kd
)
11
{
12
return
(
kvm_errors
[
__kvm_errno
]);
13
}