gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / libiberty / getpagesize.c
index 05b8110ad3ca6576a5652556a6c32f0ad50912bc..1c3a26304eae2344ba92f46966b2bb2b24116e7d 100644 (file)
@@ -2,7 +2,7 @@
 
 /*
 
-@deftypefn Supplemental int getpagesize ()
+@deftypefn Supplemental int getpagesize (void)
 
 Returns the number of bytes in a page of memory.  This is the
 granularity of many of the system memory management routines.  No
@@ -61,7 +61,7 @@ BUGS
 #endif /* GNU_OUR_PAGESIZE */
 
 int
-getpagesize ()
+getpagesize (void)
 {
   return (GNU_OUR_PAGESIZE);
 }
@@ -76,7 +76,7 @@ getpagesize ()
 #endif
 extern unsigned long lib$getsyi(const unsigned short *,...);
 
-int getpagesize ()
+int getpagesize (void)
 {
   long pagsiz = 0L;
   unsigned short itmcod = SYI$_PAGE_SIZE;
This page took 0.024127 seconds and 4 git commands to generate.