File: basic.c

package info (click to toggle)
dte 1.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,152 kB
  • sloc: ansic: 28,421; sh: 94; awk: 56; makefile: 13; sed: 1
file content (16 lines) | stat: -rw-r--r-- 445 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 This file serves as a minimal, valid input that can be passed to
 a compiler in order to make it run in C mode (like "gcc -xc").

 The behaviour for a file argument matching "*.c" is specified by
 the POSIX c99(1) spec, whereas "-xc" is a GCC-specific flag.

 See also:
   - https://pubs.opengroup.org/onlinepubs/9699919799/utilities/c99.html
   - https://gcc.gnu.org/onlinedocs/gcc/Overall-Options.html
*/

int main(void)
{
    return 0;
}