format: GNU

This commit is contained in:
2025-07-17 13:47:53 -04:00
parent ad46dba3db
commit 7a1a6b9965
4 changed files with 75 additions and 57 deletions

View File

@@ -2,10 +2,13 @@
#include "print.h"
#include <stdlib.h>
error_t unwrap(error_t err) {
if (!err.null) {
printfn("error: %s", err.src);
exit(err.status);
}
error_t
unwrap (error_t err)
{
if (!err.null)
{
printfn ("error: %s", err.src);
exit (err.status);
}
return err;
}