Clean up a little.
[pintos-anon] / src / threads / init.h
1 #ifndef HEADER_INIT_H
2 #define HEADER_INIT_H 1
3
4 #include <stddef.h>
5
6 /* Physical memory size, in 4 kB pages. */
7 size_t ram_pages;
8
9 /* Kernel command line. */
10 extern int argc;
11 extern char *argv[];
12
13 struct tss *tss;
14
15
16 #endif /* init.h */