mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
152cd3d823
correct in that sys/rlist.h is not on 4.0+. If some kind soul would like to fix this, that'd be nice. This update also fixes CFLAGS ignorance. PR: 16692 Not objected to by: maintainer
19 lines
303 B
Plaintext
19 lines
303 B
Plaintext
--- asmem.c Thu Dec 16 17:39:59 1999
|
|
+++ asmem.c.new Sun Feb 13 01:22:32 2000
|
|
@@ -168,7 +168,7 @@
|
|
|
|
}
|
|
|
|
-void main(int argc, char** argv)
|
|
+int main(int argc, char** argv)
|
|
{
|
|
defaults();
|
|
parsecmdline(argc, argv);
|
|
@@ -182,5 +182,6 @@
|
|
asmem_update();
|
|
usleep(X11_INTERVAL);
|
|
}
|
|
+ return 0;
|
|
}
|
|
|