From e667766a103cc74daa60201787ab6dae86b1496e Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 19 Oct 2025 15:16:31 +0100 Subject: [PATCH] fix comment in C file --- src/SIEVE03.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/SIEVE03.c b/src/SIEVE03.c index caabe00..a2545ad 100644 --- a/src/SIEVE03.c +++ b/src/SIEVE03.c @@ -3,9 +3,13 @@ #define LIMIT 10000 #define PRIMES 1000 -// Sieve of Eratosthenes -// Author: Greg Gauthier -// Date: 2016-01-20 +/* Sieve of Eratosthenes + * Author: Greg Gauthier + * Date: 2016-01-20 + * NOTE: cannot use single-line comments in these C files because + * of the fact that the MVS SYSIN is interpreting them as + * JCL operands. +*/ int main() { int i,j,numbers[LIMIT];