diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-07-06 22:17:36 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-07-06 22:21:51 +0200 |
| commit | 800eca1742125ffa32f3b1b6568ff8f730d43730 (patch) | |
| tree | 277a8810eeb361cc9771be472646c3d95417f082 /src | |
| parent | 4d2c6c230d1b2a502c4b58c54195b874860530b3 (diff) | |
| download | wnix-800eca1742125ffa32f3b1b6568ff8f730d43730.tar.gz | |
aio license
Diffstat (limited to 'src')
| -rw-r--r-- | src/aio/include/aio.h | 18 | ||||
| -rw-r--r-- | src/aio/src/close.c | 18 | ||||
| -rw-r--r-- | src/aio/src/open.c | 18 |
3 files changed, 54 insertions, 0 deletions
diff --git a/src/aio/include/aio.h b/src/aio/include/aio.h index 39a53e5..f9f76cb 100644 --- a/src/aio/include/aio.h +++ b/src/aio/include/aio.h @@ -1,3 +1,21 @@ +/* + * wanix, a Unix-like operating system for WebAssembly + * Copyright (C) 2025 Xavier Del Campo Romero + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + #ifndef AIO_H #define AIO_H diff --git a/src/aio/src/close.c b/src/aio/src/close.c index a9ec348..a6067a8 100644 --- a/src/aio/src/close.c +++ b/src/aio/src/close.c @@ -1,3 +1,21 @@ +/* + * wanix, a Unix-like operating system for WebAssembly + * Copyright (C) 2025 Xavier Del Campo Romero + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + #include <aio.h> #include <errno.h> #include <stdio.h> diff --git a/src/aio/src/open.c b/src/aio/src/open.c index 6689051..89fbbba 100644 --- a/src/aio/src/open.c +++ b/src/aio/src/open.c @@ -1,3 +1,21 @@ +/* + * wanix, a Unix-like operating system for WebAssembly + * Copyright (C) 2025 Xavier Del Campo Romero + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + #include <aio/types.h> #include <stddef.h> #include <stdlib.h> |
