summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-08-21 10:35:16 -0500
committerJoel Sherrill <joel@rtems.org>2018-08-29 12:52:08 -0500
commitc2e8ed6c81b1d20456ffbe812c4ee8204be60519 (patch)
treee20c634628908e97793a09e879087f33684e26d1
parentcpukit/telnetd/pty.c: Fix format overflow warning on sprintf() (diff)
downloadrtems-c2e8ed6c81b1d20456ffbe812c4ee8204be60519.tar.bz2
gdbarmsim/include/bsp.h: Fix warnings
-rw-r--r--bsps/arm/gdbarmsim/include/bsp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bsps/arm/gdbarmsim/include/bsp.h b/bsps/arm/gdbarmsim/include/bsp.h
index eaa06fc834..899507e7c7 100644
--- a/bsps/arm/gdbarmsim/include/bsp.h
+++ b/bsps/arm/gdbarmsim/include/bsp.h
@@ -57,9 +57,9 @@ int gdbarmsim__isatty(int);
int gdbarmsim_gettimeofday(struct timeval *, void *);
int gdbarmsim_unlink(const char *);
int gdbarmsim_link(void);
-/* int gdbarmsim_stat(const char *, struct stat *); */
-/* int gdbarmsim_fstat(int, struct stat *); */
-/* int gdbarmsim_swistat(int fd, struct stat * st); */
+int gdbarmsim_stat(const char *, struct stat *);
+int gdbarmsim_fstat(int, struct stat *);
+int gdbarmsim_swistat(int fd, struct stat * st);
int gdbarmsim_close(int);
clock_t gdbarmsim_clock(void);
int gdbarmsim_swiclose(int);