vt: add branch hinting to PRINT action

This commit is contained in:
Daniel Eklöf 2019-07-06 13:25:36 +02:00
parent 77e349d20d
commit 00c5b27bfa
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 6 additions and 3 deletions

View file

@ -12,6 +12,9 @@
#include "tllist.h"
#define likely(c) __builtin_expect(!!(c), 1)
#define unlikely(c) __builtin_expect(!!(c), 0)
struct wayland {
struct wl_display *display;
struct wl_registry *registry;