Skip to content

Instantly share code, notes, and snippets.

@osa1
Created January 19, 2020 13:58
Show Gist options
  • Save osa1/ff84cbe3f6ff91bd746f608916063c38 to your computer and use it in GitHub Desktop.
Save osa1/ff84cbe3f6ff91bd746f608916063c38 to your computer and use it in GitHub Desktop.
// $ gcc -fPIC -shared -o libgc.so gc.c
// $ LD_PRELOAD=$(pwd)/libgc.so ghci
#include <stdlib.h>
void GarbageCollect() {
exit(1);
}
void hs_init() {
exit(1);
}
void hs_init_ghc() {
exit(1);
}
void *malloc (size_t __size) {
exit(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment