Sha256: f88932e53cd1d5a4a803c72efc59369d8577fa04e013bc2d7025d63ed45d9497
Contents?: true
Size: 279 Bytes
Versions: 4
Compression:
Stored size: 279 Bytes
Contents
#include <stdio.h> extern void lib1_function(void); extern void lib2_function(void); extern void moveable_function(void); int main(void) { fprintf(stdout, "Hello from program.c\n"); fflush(stdout); lib1_function(); lib2_function(); moveable_function(); return 0; }
Version data entries
4 entries across 4 versions & 2 rubygems