blob: e85a69c003d421e35cd3bc4cf5f373e0bb839da5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* include/arch/riscv64/klibc/archconfig.h
*
* See include/klibc/sysconfig.h for the options that can be set in
* this file.
*
*/
#ifndef _KLIBC_ARCHCONFIG_H
#define _KLIBC_ARCHCONFIG_H
/* We have an MMU but no fork() syscall */
#define _KLIBC_NO_MMU 0
#endif /* _KLIBC_ARCHCONFIG_H */
|