aboutsummaryrefslogtreecommitdiff
path: root/procps/kill.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-02 20:56:16 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-02 20:56:16 +0000
commit96d9a06694110826a348a616abc536765a86d4fd (patch)
tree09e7b482b38ac571a01e936fb91df16dd1eeef42 /procps/kill.c
parentee7674aa004d1bf4b89c321d99549ab59de606ab (diff)
downloadbusybox-w32-96d9a06694110826a348a616abc536765a86d4fd.tar.gz
busybox-w32-96d9a06694110826a348a616abc536765a86d4fd.tar.bz2
busybox-w32-96d9a06694110826a348a616abc536765a86d4fd.zip
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early. git-svn-id: svn://busybox.net/trunk/busybox@15267 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'procps/kill.c')
-rw-r--r--procps/kill.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 90114a493..ca6f4203a 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -5,23 +5,10 @@
5 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. 5 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> 6 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */ 9 */
23 10
24 11#include "busybox.h"
25#include <stdio.h> 12#include <stdio.h>
26#include <stdlib.h> 13#include <stdlib.h>
27#include <errno.h> 14#include <errno.h>
@@ -30,7 +17,6 @@
30#include <ctype.h> 17#include <ctype.h>
31#include <string.h> 18#include <string.h>
32#include <unistd.h> 19#include <unistd.h>
33#include "busybox.h"
34 20
35#define KILL 0 21#define KILL 0
36#define KILLALL 1 22#define KILLALL 1