pctl Remove unnecessary header files
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <ulib.h>
|
||||
#include "kill.h"
|
||||
#include "macros.h"
|
||||
|
||||
struct {
|
||||
|
@ -1,6 +0,0 @@
|
||||
#ifndef PCTL_KILL_H_
|
||||
#define PCTL_KILL_H_
|
||||
|
||||
void pctl_kill(void);
|
||||
|
||||
#endif // PCTL_KILL_H_
|
@ -1,7 +1,6 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <ulib.h>
|
||||
#include "ls.h"
|
||||
#include "macros.h"
|
||||
|
||||
struct {
|
||||
|
@ -1,6 +0,0 @@
|
||||
#ifndef PCTL_LS_H_
|
||||
#define PCTL_LS_H_
|
||||
|
||||
void pctl_ls(void);
|
||||
|
||||
#endif // PCTL_LS_H_
|
@ -1,8 +1,9 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <ulib.h>
|
||||
#include "ls.h"
|
||||
#include "kill.h"
|
||||
|
||||
extern void pctl_ls(void);
|
||||
extern void pctl_kill(void);
|
||||
|
||||
void main(void) {
|
||||
if (argslen() == 0) {
|
||||
|
Reference in New Issue
Block a user