blob: 34313f58c2c7b068a6ffc26c3db3e608b2ee1f02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $MirOS: contrib/hosted/fwcf/sysdeps.h,v 1.2 2006/09/26 10:25:03 tg Exp $ */
/*
* This file is part of the FreeWRT project. FreeWRT is copyrighted
* material, please see the LICENCE file in the top-level directory
* or at http://www.freewrt.org/licence for details.
*/
#ifndef SYSDEPS_H
#define SYSDEPS_H
__BEGIN_DECLS
void pull_rndata(uint8_t *, size_t);
void push_rndata(uint8_t *, size_t);
__END_DECLS
#endif
|