mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
8 lines
208 B
C
8 lines
208 B
C
// RUN: %clang_cc1 -x c-header -ffreestanding -Eonly -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
#pragma once
|
|
#include_next "stdint.h"
|
|
#if !__has_include_next("stdint.h")
|
|
#error "__has_include_next failed"
|
|
#endif
|