1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:07:35 +00:00

Kernel: Pass a parameter struct to symlink()

This commit is contained in:
Andreas Kling 2020-01-11 10:31:33 +01:00
parent c97bfbd609
commit 46830a0c32
4 changed files with 23 additions and 8 deletions

View file

@ -345,6 +345,11 @@ struct SC_mknod_params {
u32 dev;
};
struct SC_symlink_params {
StringArgument target;
StringArgument linkpath;
};
void initialize();
int sync();