source: freewrt/scripts/param.h@ fdd4f59

freewrt_1_0 freewrt_2_0
Last change on this file since fdd4f59 was 7eca721, checked in by Thorsten Glaser <tg@…>, 19 years ago

use absolute path

git-svn-id: svn://www.freewrt.org/trunk/freewrt@223 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 452 bytes
Line 
1/* $FreeWRT$ */
2
3#include_next </usr/include/sys/param.h>
4
5#ifndef __linux__
6typedef off_t loff_t;
7#endif
8
9#ifndef __SCCSID
10#define __SCCSID(x) static const char __sccsid[] __attribute__((used)) = (x)
11#endif
12
13#ifndef __RCSID
14#define __RCSID(x) static const char __rcsid[] __attribute__((used)) = (x)
15#endif
16
17#if !defined(BSD) && defined(_STRLCPY_DEFNS)
18size_t strlcat(char *, const char *, size_t);
19size_t strlcpy(char *, const char *, size_t);
20#endif
Note: See TracBrowser for help on using the repository browser.