diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-08-29 03:08:23 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-08-29 03:08:23 +0200 |
commit | c2643afa7fc0563dd6bdf3b2b693b0447e6fcf1f (patch) | |
tree | 5226f87c9adf6c684ad749ef2cfff9613e1c5c25 /include/bits | |
parent | add assert.h (diff) | |
download | slibc-c2643afa7fc0563dd6bdf3b2b693b0447e6fcf1f.tar.gz slibc-c2643afa7fc0563dd6bdf3b2b693b0447e6fcf1f.tar.bz2 slibc-c2643afa7fc0563dd6bdf3b2b693b0447e6fcf1f.tar.xz |
add stdarg.h
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'include/bits')
-rw-r--r-- | include/bits/stdarg.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/bits/stdarg.h b/include/bits/stdarg.h new file mode 100644 index 0000000..ca051a5 --- /dev/null +++ b/include/bits/stdarg.h @@ -0,0 +1,19 @@ +/** + * 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/>. + */ +/* Use the fallbacks in <stdarg.h>. */ + |