annotate liboctave/wrappers/areadlink-wrapper.c @ 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
21896
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 /*
83c824c727c9 hide gnulib pathlen 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
21896
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 This file is part of Octave.
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 option) any later version.
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 for more details.
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, see
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>.
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 */
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 // areadlink is provided by gnulib. We don't include gnulib headers
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 // directly in Octave's C++ source files to avoid problems that may be
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 // caused by the way that gnulib overrides standard library functions.
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 #if defined (HAVE_CONFIG_H)
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 # include "config.h"
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 #endif
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 #include "areadlink.h"
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 #include "areadlink-wrapper.h"
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 // Returns pointer to allocated storage.
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 char *
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 octave_areadlink_wrapper (const char *name)
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 {
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 return areadlink (name);
83c824c727c9 hide gnulib pathlen header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 }