cassert 546 B

12345678910111213141516171819202122232425
  1. // -*- C++ -*-
  2. //===-------------------------- cassert -----------------------------------===//
  3. //
  4. // The LLVM Compiler Infrastructure
  5. //
  6. // This file is dual licensed under the MIT and the University of Illinois Open
  7. // Source Licenses. See LICENSE.TXT for details.
  8. //
  9. //===----------------------------------------------------------------------===//
  10. /*
  11. cassert synopsis
  12. Macros:
  13. assert
  14. */
  15. #include <__config>
  16. #include <assert.h>
  17. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  18. #pragma GCC system_header
  19. #endif