pctl Remove unnecessary header files

This commit is contained in:
2025-10-02 22:33:08 +02:00
parent bc2b115cb3
commit c345e2284e
5 changed files with 3 additions and 16 deletions

View File

@ -1,7 +1,6 @@
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <ulib.h> #include <ulib.h>
#include "kill.h"
#include "macros.h" #include "macros.h"
struct { struct {

View File

@ -1,6 +0,0 @@
#ifndef PCTL_KILL_H_
#define PCTL_KILL_H_
void pctl_kill(void);
#endif // PCTL_KILL_H_

View File

@ -1,7 +1,6 @@
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <ulib.h> #include <ulib.h>
#include "ls.h"
#include "macros.h" #include "macros.h"
struct { struct {

View File

@ -1,6 +0,0 @@
#ifndef PCTL_LS_H_
#define PCTL_LS_H_
void pctl_ls(void);
#endif // PCTL_LS_H_

View File

@ -1,8 +1,9 @@
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <ulib.h> #include <ulib.h>
#include "ls.h"
#include "kill.h" extern void pctl_ls(void);
extern void pctl_kill(void);
void main(void) { void main(void) {
if (argslen() == 0) { if (argslen() == 0) {