1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-28 01:22:06 +00:00
serenity/LibC/process.h
Andreas Kling df87dda63c Implement argc/argv support for spawned tasks.
Celebrate the new functionality with a simple /bin/cat implementation. :^)
2018-10-26 11:16:56 +02:00

8 lines
80 B
C

#pragma once
extern "C" {
int spawn(const char* path, const char** args);
}