annotate liboctave/wrappers/uname-wrapper.h @ 23219:3ac9f9ecfae5 stable

maint: Update copyright dates.
author John W. Eaton <jwe@octave.org>
date Wed, 22 Feb 2017 12:39:29 -0500
parents e9a0469dedd9
children 092078913d54
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21895
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 /*
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
23219
3ac9f9ecfae5 maint: Update copyright dates.
John W. Eaton <jwe@octave.org>
parents: 23083
diff changeset
3 Copyright (C) 2016-2017 John W. Eaton
21895
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 This file is part of Octave.
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 option) any later version.
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 for more details.
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, see
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>.
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 */
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 #if ! defined (octave_uname_wrapper_h)
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 #define octave_uname_wrapper_h 1
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 #if defined __cplusplus
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 extern "C" {
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 #endif
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 extern int
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 octave_uname_wrapper (char **sysname, char **nodename,
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 char **release, char **version, char **machine);
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 #if defined __cplusplus
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 }
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 #endif
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37
e171851ca344 hide sys/utsname header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 #endif