aboutsummaryrefslogtreecommitdiff
path: root/src/seat.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-03-29 19:36:15 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-03-29 19:36:15 +0200
commitd0bfa7bb01fc89750a913820273d33e482fea6e3 (patch)
treeb9c717be95be713b6ed20c762bf2ee2ee05fd86b /src/seat.zig
parent581de73b6fa2b42570132c410f01d4ba370c227b (diff)
downloadriver-d0bfa7bb01fc89750a913820273d33e482fea6e3.tar.gz
river-d0bfa7bb01fc89750a913820273d33e482fea6e3.tar.xz
Make c import a little cleaner
Diffstat (limited to 'src/seat.zig')
-rw-r--r--src/seat.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/seat.zig b/src/seat.zig
index a55f128..8767323 100644
--- a/src/seat.zig
+++ b/src/seat.zig
@@ -1,5 +1,5 @@
const std = @import("std");
-const c = @import("c.zig").c;
+const c = @import("c.zig");
const Cursor = @import("cursor.zig").Cursor;
const Keyboard = @import("keyboard.zig").Keyboard;