mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 14:02:52 +02:00
29296fc513
Signed-off-by: Leah Rowe <leah@libreboot.org>
22 lines
533 B
C
22 lines
533 B
C
/* SPDX-License-Identifier: MIT ( >:3 )
|
|
* Copyright (c) 2026 Leah Rowe <leah@libreboot.org> /| |\
|
|
Something something non-determinism / \ */
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include "include/common.h"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
int same = 0;
|
|
(void) argc, (void) argv;
|
|
xpledgex("stdio", NULL);
|
|
|
|
if (rsize(SIZE_MAX) == rsize(SIZE_MAX))
|
|
same = 1;
|
|
|
|
printf("%s\n", same ? "You win!" : "You lose!");
|
|
return same ^ 1;
|
|
}
|