Skip to content

Instantly share code, notes, and snippets.

@kyorohiro
Created December 30, 2017 04:33
Show Gist options
  • Save kyorohiro/3e762287511a3c9e40246303c070f4cf to your computer and use it in GitHub Desktop.
Save kyorohiro/3e762287511a3c9e40246303c070f4cf to your computer and use it in GitHub Desktop.
$ emcc libsqrt.c
#include <math.h>
int int_sqrt(int x) {
return sqrt(x);
}
$ emacs main.c
#include<stdio.h>
int int_sqrt(int x);
int main(int argc, char** argv) {
printf("%d\r\n", int_sqrt(2));
}
$ emcc main.c libsqrt.c
$ node a.out.js
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment