Mercurial > hg > octave-lyh
annotate liboctave/lo-sysdep.h @ 14348:95c43fc8dbe1 stable rc-3-6-1-0
3.6.1 release candidate 0
* configure.ac (AC_INIT): Version is now 3.6.1-rc0.
(OCTAVE_RELEASE_DATE): Now 2012-02-07.
* liboctave/Makefile.am: Bump liboctave revision version.
* src/Makefile.am: Bump liboctave revision version.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 09 Feb 2012 11:25:04 -0500 |
parents | 583d3d6f6fde |
children |
rev | line source |
---|---|
2926 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
2926 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
2926 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
2926 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_liboctave_sysdep_h) | |
24 #define octave_liboctave_sysdep_h 1 | |
25 | |
26 #include <string> | |
27 | |
28 #include "lo-ieee.h" | |
6321 | 29 class string_vector; |
2926 | 30 |
3504 | 31 extern std::string octave_getcwd (void); |
2926 | 32 |
3635 | 33 extern int octave_chdir (const std::string&); |
2926 | 34 |
6321 | 35 #if defined (__WIN32__) && ! defined (__CYGWIN__) |
36 extern pid_t octave_popen2 (const std::string&, const string_vector&, | |
37 bool, int *, std::string&); | |
38 #endif | |
39 | |
6123 | 40 #endif |