1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 18:17:03 +09:00

Merge branch 'main' into main

This commit is contained in:
Anthon 2024-01-14 12:52:51 +00:00
commit a61d450e92

View file

@ -40,7 +40,7 @@
// our well-known "import" for Zig // our well-known "import" for Zig
const std = @import("std"); const std = @import("std");
// and here the new the import for C // and here the new import for C
const c = @cImport({ const c = @cImport({
@cInclude("unistd.h"); @cInclude("unistd.h");
}); });