Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix windows binaries exiting with code 24 #449

Open
wants to merge 1 commit into
base: per-thread-state
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/api/yices_error_report.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,4 @@

#include "api/yices_error_report.h"

#ifndef MINGW
#include "yices_error_report_posix.c"
#else
#include "yices_error_report_win.c"
#endif
104 changes: 0 additions & 104 deletions src/api/yices_error_report_win.c

This file was deleted.

2 changes: 0 additions & 2 deletions src/include/yices_exit_codes.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
#define YICES_EXIT_INTERRUPTED 21
#define YICES_EXIT_INTERNAL_ERROR 22
#define YICES_EXIT_SYSTEM_ERROR 23
// Since 2.6.2.
#define YICES_EXIT_TLS_ERROR 24

#define YICES_EXIT_SUCCESS EXIT_SUCCESS

Expand Down