source: freewrt/scripts/param.h@ 3c89b8a

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

need strlcpy(3) and strlcat(3)

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

  • Property mode set to 100644
File size: 439 bytes
Line 
1/* $FreeWRT$ */
2
3#include_next <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.