We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
20 lines
355 B
C
20 lines
355 B
C
/*
|
|
* Copyright (c) 2015-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#define shuffle_scno arm_shuffle_scno
|
|
#include "../arm/shuffle_scno.c"
|
|
#undef shuffle_scno
|
|
|
|
kernel_ulong_t
|
|
shuffle_scno(kernel_ulong_t scno)
|
|
{
|
|
if (current_personality == 1)
|
|
return arm_shuffle_scno(scno);
|
|
|
|
return scno;
|
|
}
|