diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-08-29 02:25:48 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-08-29 02:25:48 +0200 |
commit | 03cac7318cfb0ba6c537c08f5fe8fad8c1986e21 (patch) | |
tree | 817af1db70f62749018ad3b5d87abdf0cfd7b14f /include/slibc/internals.h | |
parent | m + add stdint (diff) | |
download | slibc-03cac7318cfb0ba6c537c08f5fe8fad8c1986e21.tar.gz slibc-03cac7318cfb0ba6c537c08f5fe8fad8c1986e21.tar.bz2 slibc-03cac7318cfb0ba6c537c08f5fe8fad8c1986e21.tar.xz |
add assert.h
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | include/slibc/internals.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/slibc/internals.h b/include/slibc/internals.h new file mode 100644 index 0000000..099e2e7 --- /dev/null +++ b/include/slibc/internals.h @@ -0,0 +1,26 @@ +/** + * 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/>. + */ +#ifndef _SLIBC_INTERNALS_H +#define _SLIBC_INTERNALS_H + + +#define _(msg) msg + + +#endif + |