mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
9 lines
151 B
C
9 lines
151 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
void schedule_timeout(signed long timeout)
|
|
{
|
|
switch (timeout)
|
|
{
|
|
case ((long)(~0UL>>1)): break;
|
|
}
|
|
}
|