coreutils

General Software Utilities
git clone http://git.omkov.net/coreutils
Log | Tree | Refs | README | LICENCE | Download

coreutils/src/false.c (7 lines, 158 B) -rw-r--r-- file download

16cc815 Jamozed 2020-06-26 15:08:55
0
// false.c, version 1.0.0
16cc815 Jamozed 2020-06-26 15:08:55
1
// OMKOV coreutils implementation of POSIX false
16cc815 Jamozed 2020-06-26 15:08:55
2
// Copyright (C) 2020, Jakob Wakeling
e2140ec Jamozed 2022-03-06 15:27:45
3
// MIT Licence
16cc815 Jamozed 2020-06-26 15:08:55
4
16cc815 Jamozed 2020-06-26 15:08:55
5
int main(void) { return 1; }
6