]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
[Bug 782] Remove P() macros from Windows files
authorHarlan Stenn <stenn@ntp.org>
Mon, 19 Feb 2007 10:26:33 +0000 (05:26 -0500)
committerHarlan Stenn <stenn@ntp.org>
Mon, 19 Feb 2007 10:26:33 +0000 (05:26 -0500)
bk: 45d97b59XaFsittKloUMyJwnV8KBvg

ChangeLog
ports/winnt/include/ntp_timer.h
ports/winnt/include/transmitbuff.h
ports/winnt/include/win32_io.h

index c1b880d03accb3b07e5657a76e21b9f675da648c..e95d827a8bc7a82ab69d90ea6111234a754b1f90 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
+* [Bug 782] Remove P() macros from Windows files.
 * [Bug 778] ntpd fails to lock with drift=+500 when started with drift=-500.
 * [Bug 592] Trimble Thunderbolt GPS support.
 * IRIG, CHU, WWV, WWVB refclock improvements from Dave Mills.
index b8c40309fd2384dca43cb13d2c83f8df6b2c2ae5..d885a8c26ffef9349ab4b31975da167f34300333 100644 (file)
@@ -1,12 +1,10 @@
 #if !defined(__NTP_TIMER_H_)
 #define __NTP_TIMER_H_
 
-extern void            timer_clr_stats                 P((void));
+extern void            timer_clr_stats                 (void);
 
 #if defined(SYS_WINNT)
-extern HANDLE  get_timer_handle        P((void));
+extern HANDLE  get_timer_handle        (void);
 #endif
 
-
-
-#endif
\ No newline at end of file
+#endif
index 2a4e906588e405fb673a51534885c1f3e43c49b4..84afd72a45cb68ac59e101659f9bf435b8ed09ef 100644 (file)
@@ -31,12 +31,12 @@ typedef struct transmitbuf {
 } transmitbuf;
 
 
-extern void    init_transmitbuff       P((void));
+extern void    init_transmitbuff       (void);
 
 
 /* freetransmitbuf - make a single transmitbuf available for reuse
  */
-extern void    free_transmit_buffer    P((transmitbuf_t *));
+extern void    free_transmit_buffer    (transmitbuf_t *);
 
 /*  Get a free buffer (typically used so an async
  *  read can directly place data into the buffer
@@ -44,7 +44,7 @@ extern        void    free_transmit_buffer    P((transmitbuf_t *));
  *  The buffer is removed from the free list. Make sure
  *  you put it back with freetransmitbuf() or 
  */
-extern transmitbuf_t *get_free_transmit_buffer P((void));
+extern transmitbuf_t *get_free_transmit_buffer (void);
 
 #endif /* defined __transmitbuff_h */
 
index dcbeba723974ecc7b088249a6a422293cecb7037..db29283f6e92b4ec62759cdbd26e0caec6f3935c 100644 (file)
@@ -192,8 +192,8 @@ struct termios
 
 
 
-extern BOOL    TTY_GETATTR P((int fd, DCB *tio));
-extern BOOL    TTY_SETATTR P((int fd, const DCB *tio));
+extern BOOL    TTY_GETATTR (int fd, DCB *tio);
+extern BOOL    TTY_SETATTR (int fd, const DCB *tio);
 
 */