summaryrefslogtreecommitdiff
path: root/apps/include/apps.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-17 03:58:11 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-17 03:58:11 +0000
commit5da90b889758aac235acf8c1dff93e90ddfbfe7d (patch)
treed73fe9581f45296f026a24f991bc80cab5cd479d /apps/include/apps.h
parentaa7d9710dc9c125685b30dbc3c9ac33dd0e5567f (diff)
downloadnuttx-5da90b889758aac235acf8c1dff93e90ddfbfe7d.tar.gz
nuttx-5da90b889758aac235acf8c1dff93e90ddfbfe7d.tar.bz2
nuttx-5da90b889758aac235acf8c1dff93e90ddfbfe7d.zip
Header file clean-up
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4948 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/include/apps.h')
-rw-r--r--apps/include/apps.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/apps/include/apps.h b/apps/include/apps.h
index d494500d1..520128203 100644
--- a/apps/include/apps.h
+++ b/apps/include/apps.h
@@ -1,5 +1,5 @@
/****************************************************************************
- * include/apps/apps.h
+ * apps/include/apps.h
*
* Copyright(C) 2011 Uros Platise. All rights reserved.
* Author: Uros Platise <uros.platise@isotel.eu>
@@ -33,8 +33,8 @@
*
****************************************************************************/
-#ifndef __INCLUDE_APPS_APPS_H
-#define __INCLUDE_APPS_APPS_H
+#ifndef __APPS_INCLUDE_APPS_H
+#define __APPS_INCLUDE_APPS_H
/****************************************************************************
* Included Files
@@ -54,10 +54,10 @@
struct namedapp_s
{
- const char *name; /* Invocation name and as seen under /sbin/ */
- int priority; /* Use: SCHED_PRIORITY_DEFAULT */
- int stacksize; /* Desired stack size */
- main_t main; /* Entry point: main(int argc, char *argv[]) */
+ const char *name; /* Invocation name and as seen under /sbin/ */
+ int priority; /* Use: SCHED_PRIORITY_DEFAULT */
+ int stacksize; /* Desired stack size */
+ main_t main; /* Entry point: main(int argc, char *argv[]) */
};
/****************************************************************************
@@ -145,4 +145,5 @@ EXTERN int exec_namedapp(FAR const char *appname, FAR const char **argv);
#if defined(__cplusplus)
}
#endif
-#endif /* __INCLUDE_APPS_APPS_H */
+
+#endif /* __APPS_INCLUDE_APPS_H */