mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 11:04:51 -04:00
16 lines
348 B
Plaintext
16 lines
348 B
Plaintext
$NetBSD: patch-ba,v 1.1 2011/09/05 00:15:37 dholland Exp $
|
|
|
|
fix void main.
|
|
|
|
--- Config/bytecopy.c~ 1998-03-22 23:26:53.000000000 +0000
|
|
+++ Config/bytecopy.c
|
|
@@ -3,7 +3,7 @@
|
|
|
|
char buffer[27];
|
|
|
|
-void main (void)
|
|
+int main (void)
|
|
{
|
|
COPY(buffer,"abcdefghijklmnopqrstuvwxyz",27);
|
|
if (strcmp(buffer,"abcdefghijklmnopqrstuvwxyz") != 0) exit(1);
|