From 7ae7b2bac7eedd3a42a156cbe72926f6bbd5995a Mon Sep 17 00:00:00 2001 From: Arjan van de Ven Date: Sat, 17 Jan 2009 16:54:46 +0200 Subject: [PATCH] Add license text --- core.c | 9 +++++++++ coredumper.h | 13 +++++++++++++ corewatcher.c | 11 +++++++++++ find_file.c | 10 ++++++++++ 4 files changed, 43 insertions(+) diff --git a/core.c b/core.c index 3f581cb..00843d6 100644 --- a/core.c +++ b/core.c @@ -1,3 +1,12 @@ +/* + * Core dump watcher & collector + * + * (C) 2009 Intel Corporation + * + * 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. + */ #include int bar(char *foo) diff --git a/coredumper.h b/coredumper.h index 5b288d3..49c2282 100644 --- a/coredumper.h +++ b/coredumper.h @@ -1,2 +1,15 @@ +/* + * Core dump watcher & collector + * + * (C) 2009 Intel Corporation + * + * 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. + */ + +#ifndef __INCLUDE_GUARD_COREDUMPER_H__ +#define __INCLUDE_GUARD_COREDUMPER_H__ extern char *find_executable(char *fragment); extern char *find_coredump(char *corefile); +#endif diff --git a/corewatcher.c b/corewatcher.c index 8991a3a..b5e4f3e 100644 --- a/corewatcher.c +++ b/corewatcher.c @@ -1,3 +1,14 @@ +/* + * Core dump watcher & collector + * + * (C) 2009 Intel Corporation + * + * 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. + */ + + #define _GNU_SOURCE #include diff --git a/find_file.c b/find_file.c index af44826..e05290e 100644 --- a/find_file.c +++ b/find_file.c @@ -1,3 +1,13 @@ +/* + * Core dump watcher & collector + * + * (C) 2009 Intel Corporation + * + * 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. + */ + #define _GNU_SOURCE #include #include -- 2.7.4