mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
20 lines
462 B
C++
20 lines
462 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// test <assert.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#ifndef assert
|
|
#error assert not defined
|
|
#endif
|
|
|
|
int main()
|
|
{
|
|
}
|