iscsiadm: fix boot code compile error
[open-iscsi.git] / include / sysdeps.h
blob2f18e3be2ba9b67eb464caa4d8160ff61ecdb8e7
1 /*
2 * wrapping of libc features and kernel interfaces
4 * Copyright (C) 2005-2006 Kay Sievers <kay.sievers@vrfy.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation version 2 of the License.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef _SYSDEPS_H_
22 #define _SYSDEPS_H_
24 extern size_t strlcpy(char *dst, const char *src, size_t size);
25 extern size_t strlcat(char *dst, const char *src, size_t size);
27 #endif