/* bits/platform.h: Platform defines. */

#ifndef _BITS_PLATFORM_H
#define _BITS_PLATFORM_H

#if defined(__x86_64__)
#define __libc_arch_x86_64
#define __libc_arch_x86
#else
#define __libc_arch_unknown
#endif

#endif