1/*
2            Copyright Sergue E. Leontiev 2013.
3   Distributed under the Boost Software License, Version 1.0.
4      (See accompanying file LICENSE_1_0.txt or copy at
5          http://www.boost.org/LICENSE_1_0.txt)
6*/
7
8// Stub file for universal binary
9
10#if defined(__ppc__)
11    #include "jump_ppc32_sysv_macho_gas.S"
12#elif defined(__ppc64__)
13    #include "jump_ppc64_sysv_macho_gas.S"
14#else
15    #error "No arch's"
16#endif
17