2017-12-13 18:59:23 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
2015-10-09 17:17:17 +02:00
|
|
|
/*
|
|
|
|
* S390 version
|
|
|
|
*
|
|
|
|
* Derived from "include/asm-i386/unistd.h"
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_S390_UNISTD_H_
|
|
|
|
#define _ASM_S390_UNISTD_H_
|
|
|
|
|
2018-03-13 09:38:18 +01:00
|
|
|
#ifdef __s390x__
|
|
|
|
#include <asm/unistd_64.h>
|
2015-10-09 17:17:17 +02:00
|
|
|
#else
|
2018-03-13 09:38:18 +01:00
|
|
|
#include <asm/unistd_32.h>
|
2015-10-09 17:17:17 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _ASM_S390_UNISTD_H_ */
|