mem.c (c58310bf4933986513020fa90b4190c7492995ae) mem.c (fb967ecc584c20c74a007de749ca597068b0fcac)
1/*
2 * Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
5
6#include <stdio.h>
7#include <stddef.h>
8#include <stdlib.h>
9#include <unistd.h>
10#include <errno.h>
11#include <fcntl.h>
12#include <string.h>
1/*
2 * Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
5
6#include <stdio.h>
7#include <stddef.h>
8#include <stdlib.h>
9#include <unistd.h>
10#include <errno.h>
11#include <fcntl.h>
12#include <string.h>
13#include <sys/stat.h>
13#include <sys/mman.h>
14#include <sys/param.h>
15#include "init.h"
16#include "kern_constants.h"
17#include "os.h"
18#include "user.h"
19
20/* Modified by which_tmpdir, which is called during early boot */

--- 258 unchanged lines hidden ---
14#include <sys/mman.h>
15#include <sys/param.h>
16#include "init.h"
17#include "kern_constants.h"
18#include "os.h"
19#include "user.h"
20
21/* Modified by which_tmpdir, which is called during early boot */

--- 258 unchanged lines hidden ---