mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 23:00:45 +01:00
13 lines
186 B
C
13 lines
186 B
C
#include <quiz.h>
|
|
#include <stdint.h>
|
|
#include <assert.h>
|
|
|
|
QUIZ_CASE(liba_stdint) {
|
|
int8_t i = -1;
|
|
int j = -1;
|
|
assert(i == -1);
|
|
assert(i == j);
|
|
assert(sizeof(int8_t) == 1);
|
|
}
|
|
|