Update exercises/093_hello_c.zig

small typo
This commit is contained in:
Chris Boesch 2024-01-13 14:27:58 +00:00
parent 0d46acfa02
commit 7bfd7adce8

View file

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