summaryrefslogtreecommitdiff
path: root/msdos
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-02-10 22:23:31 +0000
committerGlenn Morris <rgm@gnu.org>2007-02-10 22:23:31 +0000
commitdccf2bac0d07847c17440be23d279c26923c7e06 (patch)
treef0140d1f0b3f1afd084629bc3c9accefe2b7e24b /msdos
parent549b3a50e39e002cf48937653f21fd828b32d5cb (diff)
downloademacs-dccf2bac0d07847c17440be23d279c26923c7e06.tar.gz
Relicense under GPL - see README file for details.
Diffstat (limited to 'msdos')
-rw-r--r--msdos/is_exec.c29
-rw-r--r--msdos/sigaction.c23
2 files changed, 45 insertions, 7 deletions
diff --git a/msdos/is_exec.c b/msdos/is_exec.c
index 4da0ec35c56..c8bb7dcf4fa 100644
--- a/msdos/is_exec.c
+++ b/msdos/is_exec.c
@@ -1,6 +1,28 @@
-/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
/* IS_EXEC.C
*
+ * Copyright (C) 1995 DJ Delorie
+ * Copyright (C) 1994 Eli Zaretskii <eliz@is.elta.co.il>
+ *
+ * (See the README file in this directory for the copyright and license
+ * history of this file.)
+ *
+ * This file 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 2, or (at your option)
+ * any later version.
+ *
+ * This file 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 file; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ * Commentary:
+ *
* Given a filename or a file handle, and the extension of the file,
* determine if the file is executable.
* First, the file extension is checked in case it uniquely identifies
@@ -8,11 +30,6 @@
* two bytes of the file are tested for known signatures of executable
* files.
*
- * Copyright (c) 1994 Eli Zaretskii <eliz@is.elta.co.il>
- *
- * This software may be used freely so long as this copyright notice is
- * left intact. There is no warranty on this software.
- *
*/
#include <libc/stubs.h>
diff --git a/msdos/sigaction.c b/msdos/sigaction.c
index 0f4f09b2a99..678de55f4a1 100644
--- a/msdos/sigaction.c
+++ b/msdos/sigaction.c
@@ -1,4 +1,25 @@
-/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
+/* sigaction.c
+ *
+ * Copyright (C) 1995 DJ Delorie
+ *
+ * (See the README file in this directory for the copyright and license
+ * history of this file.)
+ *
+ * This file 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 2, or (at your option)
+ * any later version.
+ *
+ * This file 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 file; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
#include <signal.h>
#include <errno.h>