/* This file is used by the fuzzer in order to prevent executing shell commands. */ #define _GNU_SOURCE #include "../output.h" #include #include #include #include int fork() { return 1; } void wlr_texture_get_size(struct wlr_texture *texture, int *width, int *height) { if(width != NULL) { *width = 0; } if(height != NULL) { *height = 0; } } cairo_surface_t * cairo_image_surface_create(cairo_format_t fmt, int width, int height) { return NULL; }