From 7fb5df4b4162076382fa92b84f007d1d637cc87e Mon Sep 17 00:00:00 2001 From: Tom Cort Date: Mon, 26 Nov 2007 23:57:54 -0500 Subject: [PATCH] Add skeleton main() function. I don't have a good working main program yet, so here's an empty main() function that lets the thing compile. --- inoclam.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 inoclam.c diff --git a/inoclam.c b/inoclam.c new file mode 100644 index 0000000..8f805f2 --- /dev/null +++ b/inoclam.c @@ -0,0 +1,24 @@ +/* + * inoclam - Inotify+ClamAV virus scanner + * Copyright (C) 2007 Vermont Department of Taxes + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * Contributor(s): + * Tom Cort + */ + +int main(int argc, char *argv[], char *envp[]) { + return 0; +} -- 2.11.4.GIT