Subversion Repositories freemyipod

Rev

Rev 43 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 43 Rev 99
Line 21... Line 21...
21
//
21
//
22
 
22
 
23
 
23
 
24
#include "global.h"
24
#include "global.h"
25
#include "syscall.h"
25
#include "syscall.h"
-
 
26
#include "syscallapi.h"
26
 
27
 
27
 
28
 
-
 
29
extern struct embios_syscall_table syscall_table;
-
 
30
 
-
 
31
 
28
void* get_syscall_table()
32
struct embios_syscall_table* get_syscall_table()
29
{
33
{
30
    return NULL;
34
    return &syscall_table;
31
}
35
}