fix comment in C file
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 15s

This commit is contained in:
Greg Gauthier 2025-10-19 15:16:31 +01:00
parent 4f09dc3ed0
commit e667766a10

View File

@ -3,9 +3,13 @@
#define LIMIT 10000 #define LIMIT 10000
#define PRIMES 1000 #define PRIMES 1000
// Sieve of Eratosthenes /* Sieve of Eratosthenes
// Author: Greg Gauthier * Author: Greg Gauthier
// Date: 2016-01-20 * 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 main()
{ {
int i,j,numbers[LIMIT]; int i,j,numbers[LIMIT];