coreutils

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

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

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