diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-05-29 21:41:53 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-06-04 01:30:43 +0200 |
commit | 5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0 (patch) | |
tree | 6590f32c1844e2675b7f43a9522edf9bf3309216 /linux-user/m68k/target_fcntl.h | |
parent | b8e13ba94e39aae79be5724b2a382091e4c91c83 (diff) | |
download | qemu-5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0.zip qemu-5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0.tar.gz qemu-5de7706e2c713e7fe2cf6ea039b042f1e7c53fa0.tar.bz2 |
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/m68k/target_fcntl.h')
-rw-r--r-- | linux-user/m68k/target_fcntl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/linux-user/m68k/target_fcntl.h b/linux-user/m68k/target_fcntl.h new file mode 100644 index 0000000..4328c60 --- /dev/null +++ b/linux-user/m68k/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 M68K_TARGET_FCNTL_H +#define M68K_TARGET_FCNTL_H +#include "../generic/fcntl.h" +#endif |