Files

12 lines
197 B
Bash
Raw Permalink Normal View History

2018-06-04 19:53:41 -07:00
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
cat << "END" | $@ -Werror -Wl,--fatal-warnings -x c - -o /dev/null >/dev/null 2>&1
2018-06-04 19:53:41 -07:00
#include <stdio.h>
int main(void)
{
2026-02-12 14:35:43 +01:00
printf("\n");
2018-06-04 19:53:41 -07:00
return 0;
}
END