All of the following information is based on go version go1.17.1 darwin/amd64.
| GOOS | Out of the Box | 
|---|---|
| aix | ✅ | 
| android | ✅ | 
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| int addi(int a, int b) { | |
| return a + b; | |
| } | |
| char *adds(char *a, char *b) { | |
| char *res = malloc(strlen(a) + strlen(b) + 1); |