diff options
author | Laurent Vivier | 2018-05-29 21:41:53 +0200 |
---|---|---|
committer | Laurent Vivier | 2018-06-04 01:30:43 +0200 |
commit | 5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0 (patch) | |
tree | 6590f32c1844e2675b7f43a9522edf9bf3309216 /linux-user/openrisc | |
parent | linux-user: SPARC "rd %tick" can be used by user application (diff) | |
download | qemu-5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0.tar.gz qemu-5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0.tar.xz qemu-5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0.zip |
linux-user: move generic fcntl definitions to generic/fcntl.h
add a per target target_fcntl.h and include the generic one from them
No code change.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180529194207.31503-2-laurent@vivier.eu>
Diffstat (limited to 'linux-user/openrisc')
-rw-r--r-- | linux-user/openrisc/target_fcntl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/linux-user/openrisc/target_fcntl.h b/linux-user/openrisc/target_fcntl.h new file mode 100644 index 0000000000..ea31bf8b70 --- /dev/null +++ b/linux-user/openrisc/target_fcntl.h @@ -0,0 +1,11 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation, or (at your option) any + * later version. See the COPYING file in the top-level directory. + */ + +#ifndef OPENRISC_TARGET_FCNTL_H +#define OPENRISC_TARGET_FCNTL_H +#include "../generic/fcntl.h" +#endif |