File: code.c

package info (click to toggle)
codespell 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,864 kB
  • sloc: python: 2,507; makefile: 58; ansic: 11
file content (18 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

int f(int type)
{
    return type;
}

int main(void)
{
    int fd, clas;
    /* tis code does nothing */

    f(1, 2, 3);

    fd = opem("/tmp/a", O_RDONLY);

    // buring your cpu
    return f(clas);
}