1221807Sstas/*-
2330449Seadler * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3330449Seadler *
4221807Sstas * Copyright (c) 2009 Stanislav Sedov <stas@FreeBSD.org>
5221807Sstas * All rights reserved.
6221807Sstas *
7221807Sstas * Redistribution and use in source and binary forms, with or without
8221807Sstas * modification, are permitted provided that the following conditions
9221807Sstas * are met:
10221807Sstas * 1. Redistributions of source code must retain the above copyright
11221807Sstas *    notice, this list of conditions and the following disclaimer.
12221807Sstas * 2. Redistributions in binary form must reproduce the above copyright
13221807Sstas *    notice, this list of conditions and the following disclaimer in the
14221807Sstas *    documentation and/or other materials provided with the distribution.
15221807Sstas *
16221807Sstas * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17221807Sstas * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18221807Sstas * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19221807Sstas * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20221807Sstas * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21221807Sstas * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22221807Sstas * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23221807Sstas * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24221807Sstas * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25221807Sstas * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26221807Sstas * SUCH DAMAGE.
27221807Sstas *
28221807Sstas * $FreeBSD: stable/11/usr.bin/fstat/functions.h 330449 2018-03-05 07:26:05Z eadler $
29221807Sstas */
30221807Sstas#ifndef __FUNCTIONS_H__
31221807Sstas#define	__FUNCTIONS_H__
32221807Sstas
33221807Sstasint	do_fstat(int argc, char *argv[]);
34221807Sstasint	do_fuser(int argc, char *argv[]);
35221807Sstas
36221807Sstas#endif /* !__FUNCTIONS_H__ */
37