aboutsummaryrefslogtreecommitdiff
path: root/src/or/protover_rust.c
blob: 0c409b1681156efd3b170500a5997ddeb95413c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Copyright (c) 2016-2017, The Tor Project, Inc. */
/* See LICENSE for licensing information */

/*
 * \file protover_rust.c
 * \brief Provide a C wrapper for functions exposed in /src/rust/protover,
 * and safe translation/handling between the Rust/C boundary.
 */

#include "or.h"
#include "protover.h"

#ifdef HAVE_RUST

/* Define for compatibility, used in main.c */
void protover_free_all(void) {}

#endif