mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-04-27 13:20:15 -05:00
17 lines
277 B
C
17 lines
277 B
C
// Copyright 2025 XTX Markets Technologies Limited
|
|
//
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifndef _TERNFS_ERR_H
|
|
#define _TERNFS_ERR_H
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include "bincode.h"
|
|
|
|
bool ternfs_unexpected_error(int err);
|
|
int ternfs_error_to_linux(int err);
|
|
|
|
#endif
|
|
|