aboutsummaryrefslogtreecommitdiff
path: root/src/operating_system.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/operating_system.c')
-rw-r--r--src/operating_system.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/operating_system.c b/src/operating_system.c
index a02b406..4d58466 100644
--- a/src/operating_system.c
+++ b/src/operating_system.c
@@ -1,4 +1,4 @@
-/*
+/*
* operating_system : get currently used OS
*
* (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem)
@@ -7,12 +7,12 @@
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -27,8 +27,7 @@ MESSAGE OPERATING_SYSTEM: simple and easy
static t_class *operating_system_class;
-typedef struct _operating_system
-{
+typedef struct _operating_system {
t_object x_obj;
} t_operating_system;
@@ -50,7 +49,8 @@ static void operating_system_bang(t_operating_system *x)
static void *operating_system_new(void)
{
- t_operating_system *x = (t_operating_system *)pd_new(operating_system_class);
+ t_operating_system *x = (t_operating_system *)pd_new(
+ operating_system_class);
outlet_new(&x->x_obj, 0);
return (x);
}
@@ -62,10 +62,12 @@ static void operating_system_help(t_operating_system*x)
void operating_system_setup(void)
{
- operating_system_class = class_new(gensym("operating_system"), (t_newmethod)operating_system_new,
+ operating_system_class = class_new(gensym("operating_system"),
+ (t_newmethod)operating_system_new,
0, sizeof(t_operating_system), 0, A_NULL);
-
+
class_addbang (operating_system_class, operating_system_bang);
- class_addmethod(operating_system_class, (t_method)operating_system_help, gensym("help"), A_NULL);
+ class_addmethod(operating_system_class, (t_method)operating_system_help,
+ gensym("help"), A_NULL);
zexy_register("operating_system");
}