mirror of
https://github.com/falk-werner/webfuse
synced 2025-06-09 02:44:12 +00:00
12 lines
184 B
C
12 lines
184 B
C
|
#include "wsfsp/operation/error.h"
|
||
|
|
||
|
void wsfsp_respond_error(
|
||
|
struct wsfsp_request * request,
|
||
|
int status)
|
||
|
{
|
||
|
(void) request;
|
||
|
(void) status;
|
||
|
|
||
|
// ToDo: implement me
|
||
|
}
|