1
0
mirror of https://github.com/falk-werner/webfuse synced 2025-06-09 02:44:12 +00:00
falk-werner_webfuse/lib/wsfsp/operation/error.c

12 lines
184 B
C
Raw Normal View History

2019-02-24 17:03:22 +00:00
#include "wsfsp/operation/error.h"
void wsfsp_respond_error(
struct wsfsp_request * request,
int status)
{
(void) request;
(void) status;
// ToDo: implement me
}