1854fa44bSDimitry Andric// -*- C++ -*- 2854fa44bSDimitry Andric//===-------------------------- system_error ------------------------------===// 3854fa44bSDimitry Andric// 4854fa44bSDimitry Andric// The LLVM Compiler Infrastructure 5854fa44bSDimitry Andric// 6854fa44bSDimitry Andric// This file is dual licensed under the MIT and the University of Illinois Open 7854fa44bSDimitry Andric// Source Licenses. See LICENSE.TXT for details. 8854fa44bSDimitry Andric// 9854fa44bSDimitry Andric//===----------------------------------------------------------------------===// 10*b5893f02SDimitry Andric#ifndef _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR 11*b5893f02SDimitry Andric#define _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR 12854fa44bSDimitry Andric 13*b5893f02SDimitry Andric#include <__config> 14*b5893f02SDimitry Andric 15*b5893f02SDimitry Andric#ifdef _LIBCPP_WARNING 16*b5893f02SDimitry Andric_LIBCPP_WARNING("<experimental/system_error> has been removed. Use <system_error> instead.") 17*b5893f02SDimitry Andric#else 18*b5893f02SDimitry Andric# warning "<experimental/system_error> has been removed. Use <system_error> instead." 19*b5893f02SDimitry Andric#endif 20*b5893f02SDimitry Andric 21*b5893f02SDimitry Andric#endif // _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR 22