1/*
2 * Copyright 2014, Paweł Dziepak, pdziepak@quarnos.org.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_ARCH_x86_ARCH_ATOMIC_H
6#define _KERNEL_ARCH_x86_ARCH_ATOMIC_H
7
8
9#ifdef __x86_64__
10#	include <arch/x86/64/atomic.h>
11#else
12#	include <arch/x86/32/atomic.h>
13#endif
14
15
16#endif	// _KERNEL_ARCH_ATOMIC_H
17
18