diff options
author | Mattias Andrée <maandree@kth.se> | 2024-01-29 07:32:29 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-01-29 17:38:32 +0100 |
commit | cb4b8137902b7c89872f8face7b47704f932b807 (patch) | |
tree | aff0ef17c94de69cb818b4635338b792cdae534a /zdiff.c | |
parent | Add libsimple_generate_seed and libsimple_srand (diff) | |
download | libsimple-cb4b8137902b7c89872f8face7b47704f932b807.tar.gz libsimple-cb4b8137902b7c89872f8face7b47704f932b807.tar.bz2 libsimple-cb4b8137902b7c89872f8face7b47704f932b807.tar.xz |
Add to*, *diff, *abs, *uabs, and random_{bits,float,signed,unsigned}
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'zdiff.c')
-rw-r--r-- | zdiff.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" +#ifndef TEST + + +extern inline size_t libsimple_zdiff(ssize_t, ssize_t); + + +#else +#include "test.h" + +int +main(void) +{ + return 0; +} + +#endif |