// clang -o simple_speak_payload.dylib simple_speak_payload.c -framework ApplicationServices -F/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks -dynamiclib
#include <SpeechSynthesis/SpeechSynthesis.h>

__attribute__((constructor))
static void init(void){
  SpeakString("\x06pwned!");
}
