Sha256: a84efe62b5a68e5607559d3e23b8a403a99664bde378fe906f38baeef60fd756
Contents?: true
Size: 379 Bytes
Versions: 40
Compression:
Stored size: 379 Bytes
Contents
#include <stdio.h> // Use the assembly function in linux and mac where it is built. #if PLATFORM_LINUX || PLATFORM_MAC extern int asm_function(void); #else int asm_function() { return 41; } #endif int main(int argc, char *argv[]) { fprintf(stdout, "Hello from program.c\n"); fflush(stdout); fprintf(stdout, "Got %d.\n", asm_function()); fflush(stdout); return 0; }
Version data entries
40 entries across 40 versions & 6 rubygems