diff options
-rw-r--r-- | include/sys/errno.h | 20 | ||||
-rw-r--r-- | include/sys/fcntl.h | 20 | ||||
-rw-r--r-- | include/sys/poll.h | 20 | ||||
-rw-r--r-- | include/sys/signal.h | 20 | ||||
-rw-r--r-- | include/sys/termios.h | 20 | ||||
-rw-r--r-- | include/wait.h | 20 |
6 files changed, 120 insertions, 0 deletions
diff --git a/include/sys/errno.h b/include/sys/errno.h new file mode 100644 index 0000000..9fb9a45 --- /dev/null +++ b/include/sys/errno.h @@ -0,0 +1,20 @@ +/** + * slibc — Yet another C library + * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +# warning "Redirection incorrect #include of <sys/errno.h> to <errno.h>" +#include <errno.h> + diff --git a/include/sys/fcntl.h b/include/sys/fcntl.h new file mode 100644 index 0000000..b1199c3 --- /dev/null +++ b/include/sys/fcntl.h @@ -0,0 +1,20 @@ +/** + * slibc — Yet another C library + * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +# warning "Redirection incorrect #include of <sys/fcntl.h> to <fcntl.h>" +#include <fcntl.h> + diff --git a/include/sys/poll.h b/include/sys/poll.h new file mode 100644 index 0000000..f985296 --- /dev/null +++ b/include/sys/poll.h @@ -0,0 +1,20 @@ +/** + * slibc — Yet another C library + * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +# warning "Redirection incorrect #include of <sys/poll.h> to <poll.h>" +#include <poll.h> + diff --git a/include/sys/signal.h b/include/sys/signal.h new file mode 100644 index 0000000..7af5279 --- /dev/null +++ b/include/sys/signal.h @@ -0,0 +1,20 @@ +/** + * slibc — Yet another C library + * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +# warning "Redirection incorrect #include of <sys/signal.h> to <signal.h>" +#include <signal.h> + diff --git a/include/sys/termios.h b/include/sys/termios.h new file mode 100644 index 0000000..63b3245 --- /dev/null +++ b/include/sys/termios.h @@ -0,0 +1,20 @@ +/** + * slibc — Yet another C library + * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +# warning "Redirection incorrect #include of <sys/termios.h> to <termios.h>" +#include <termios.h> + diff --git a/include/wait.h b/include/wait.h new file mode 100644 index 0000000..c152171 --- /dev/null +++ b/include/wait.h @@ -0,0 +1,20 @@ +/** + * slibc — Yet another C library + * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +# warning "Redirection incorrect #include of <wait.h> to <sys/wait.h>" +#include <sys/wait.h> + |