coreutils

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

AuthorJamozed <[email protected]>
Date2021-01-01 21:50:31
Commit115414703d62d040a71a3145289d118557367a47
Parent28ef44e18be0c4359a24de027e717af0fc8aade6

unlink: Add comments

Diffstat

M src/unlink.c | 2 ++

1 files changed, 2 insertions, 0 deletions

diff --git a/src/unlink.c b/src/unlink.c
index fa361a8..455c580 100644
--- a/src/unlink.c
+++ b/src/unlink.c
@@ -63,6 +63,7 @@ int main(int ac, char *av[]) { A0 = av[0];
 	return 0;
 }
 
+/* Print help information */
 static void hlp(void) {
 	puts("unlink - remove a file using the unlink function\n");
 	puts("usage: unlink file\n");
@@ -72,6 +73,7 @@ static void hlp(void) {
 	return;
 }
 
+/* Print version information */
 static void ver(void) {
 	puts("OMKOV coreutils unlink, version " VERSION);
 	puts("Copyright (C) 2020, Jakob Wakeling");