1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/games/xoj/files/patch-aa

29 lines
460 B
Plaintext

--- xoj.c.orig Tue Jul 26 09:10:19 1994
+++ xoj.c Sun Dec 19 22:32:12 1999
@@ -106,7 +106,9 @@
void UpdateCop();
void DrawCop();
void EraseCop();
+#ifndef __FreeBSD__
void usleep();
+#endif
Pixel AllocNamedColor();
void
@@ -584,6 +586,7 @@
/*
* sleep for a number of micro-seconds
*/
+#ifndef __FreeBSD__
void usleep(usec)
unsigned long usec;
{
@@ -596,6 +599,7 @@
select(0, (void *)0, (void *)0, (void *)0, &t);
#endif
}
+#endif