Subversion Repositories shark

Rev

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

Rev Author Line No. Line
1199 giacomo 1
#include <kernel/kern.h>
2
#include "parser.h"
1200 giacomo 3
#include "dosread.h"
1199 giacomo 4
 
1200 giacomo 5
extern void *start;
6
extern void *end;
7
 
1199 giacomo 8
int main()
9
{
10
 
1200 giacomo 11
  struct loader_task *start_loader_task = NULL;
12
  struct timespec total;
1199 giacomo 13
 
1200 giacomo 14
  line_reader(start, end, &total, start_loader_task);
15
 
1199 giacomo 16
  return 0;
17
 
18
}