DEBSOURCES
Skip Quicknav
sources / pypy3 / 7.3.19%2Bdfsg-2 / pypy / module / array / benchmark / circular.c
12345678910
#include <stdio.h> double buf[65536]; double circular(double *buf); int main() { double sa = circular(buf); //printf("%f\n", sa); }