annotate scripts/miscellaneous/ismac.m @ 7010:f7d2f54008f5

[project @ 2007-10-11 17:50:34 by jwe]
author jwe
date Thu, 11 Oct 2007 17:50:34 +0000
parents
children 93c65f2a5668
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7010
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
1 ## Copyright (C) 2007 Thomas Treichl
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
2 ##
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
3 ## This file is part of Octave.
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
4 ##
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
7 ## the Free Software Foundation; either version 2, or (at your option)
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
8 ## any later version.
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
9 ##
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
13 ## General Public License for more details.
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
14 ##
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
16 ## along with Octave; see the file COPYING. If not, write to the Free
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
18 ## 02110-1301, USA.
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
19
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
20 ## -*- texinfo -*-
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
21 ## @deftypefn {Function File} {} ismac ()
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
22 ## Return 1 if Octave is running on a Mac OS X system and 0 otherwise.
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
23 ## @seealso{ispc, isunix}
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
24 ## @end deftypefn
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
25
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
26 function retval = ismac ()
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
27
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
28 if (nargin == 0)
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
29 retval = octave_config_info ("mac");
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
30 else
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
31 print_usage ();
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
32 endif
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
33
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
34 endfunction
f7d2f54008f5 [project @ 2007-10-11 17:50:34 by jwe]
jwe
parents:
diff changeset
35