Removed warnings.

This commit is contained in:
Joel Sherrill
1997-11-29 18:21:00 +00:00
parent b4dfd17e64
commit bbb281698f
6 changed files with 18 additions and 3 deletions

View File

@@ -15,6 +15,11 @@
#include <rtems.h> #include <rtems.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
/* for strcasecmp in linux */
#if defined(linux)
#define __USE_BSD
#endif
#include <string.h> #include <string.h>
#include <rtems/monitor.h> #include <rtems/monitor.h>

View File

@@ -313,7 +313,7 @@ typedef struct {
/* monitor.c */ /* monitor.c */
void rtems_monitor_kill(void); void rtems_monitor_kill(void);
void rtems_monitor_init(rtems_boolean); void rtems_monitor_init(unsigned32);
void rtems_monitor_wakeup(void); void rtems_monitor_wakeup(void);
void rtems_monitor_pause_cmd(int, char **, unsigned32, boolean); void rtems_monitor_pause_cmd(int, char **, unsigned32, boolean);
void rtems_monitor_fatal_cmd(int, char **, unsigned32, boolean); void rtems_monitor_fatal_cmd(int, char **, unsigned32, boolean);

View File

@@ -15,6 +15,11 @@
#include <rtems.h> #include <rtems.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
/* for strcasecmp in linux */
#if defined(linux)
#define __USE_BSD
#endif
#include <string.h> #include <string.h>
#include <rtems/monitor.h> #include <rtems/monitor.h>

View File

@@ -313,7 +313,7 @@ typedef struct {
/* monitor.c */ /* monitor.c */
void rtems_monitor_kill(void); void rtems_monitor_kill(void);
void rtems_monitor_init(rtems_boolean); void rtems_monitor_init(unsigned32);
void rtems_monitor_wakeup(void); void rtems_monitor_wakeup(void);
void rtems_monitor_pause_cmd(int, char **, unsigned32, boolean); void rtems_monitor_pause_cmd(int, char **, unsigned32, boolean);
void rtems_monitor_fatal_cmd(int, char **, unsigned32, boolean); void rtems_monitor_fatal_cmd(int, char **, unsigned32, boolean);

View File

@@ -15,6 +15,11 @@
#include <rtems.h> #include <rtems.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
/* for strcasecmp in linux */
#if defined(linux)
#define __USE_BSD
#endif
#include <string.h> #include <string.h>
#include <rtems/monitor.h> #include <rtems/monitor.h>

View File

@@ -313,7 +313,7 @@ typedef struct {
/* monitor.c */ /* monitor.c */
void rtems_monitor_kill(void); void rtems_monitor_kill(void);
void rtems_monitor_init(rtems_boolean); void rtems_monitor_init(unsigned32);
void rtems_monitor_wakeup(void); void rtems_monitor_wakeup(void);
void rtems_monitor_pause_cmd(int, char **, unsigned32, boolean); void rtems_monitor_pause_cmd(int, char **, unsigned32, boolean);
void rtems_monitor_fatal_cmd(int, char **, unsigned32, boolean); void rtems_monitor_fatal_cmd(int, char **, unsigned32, boolean);