Subversion Repositories Kolibri OS

Rev

Rev 6391 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6391 ashmew2 1
#ifndef KOLIBRI_BOXLIB_H
2
#define KOLIBRI_BOXLIB_H
3
 
4
extern int init_boxlib_asm(void);
5
 
6
int kolibri_boxlib_init(void)
7
{
8
  int asm_init_status = init_boxlib_asm();
9
 
10
  /* just return asm_init_status? or return init_boxlib_asm() ?*/
11
 
12
  if(asm_init_status == 0)
13
    return 0;
14
  else
15
    return 1;
16
}
17
 
18
#endif /* KOLIBRI_BOXLIB_H */