mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-23 09:30:36 +02:00
13 lines
358 B
C
13 lines
358 B
C
/*
|
|
* Copyright © 2024 Collabora, Ltd.
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
void compiler_rs_free(void *ptr);
|
|
long compiler_rs_ftell(FILE *f);
|
|
int compiler_rs_fseek(FILE *f, long offset, int whence);
|
|
size_t compiler_rs_fwrite(const void *ptr,
|
|
size_t size, size_t nmemb,
|
|
FILE *stream);
|