This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
USER="$1" | |
PASS="$2" | |
REVISION="$3" | |
export API="https://api.opensuse.org" | |
export PROJ="home:fawz:mooltipass" | |
export PKG="moolticute" | |
# for moolticute-testing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <backtrace.h> | |
struct backtrace_state* bt_state = NULL; | |
void bt_error_callback(void* data, const char* msg, int errno) | |
{ | |
fprintf(stderr, "bt_error %d: %s\n", errno, msg); | |
} | |
struct syminfo |