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 mingw errors in hlc_main.c #704

Merged
merged 2 commits into from
Sep 6, 2024

Commits on Sep 1, 2024

  1. Fix error/warning about implicit wmain declaration

    GCC:
    ```
    error: implicit declaration of function 'wmain'
    ```
    
    MSVC:
    ```
    warning C4013: 'wmain' undefined; assuming extern returning int
    ```
    tobil4sk committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    db2dad5 View commit details
    Browse the repository at this point in the history
  2. Fix error/warning about incompatible argv pointer

    GCC:
    ```
    expected 'uchar **' {aka 'short unsigned int **'} but argument is of type 'char **'
    ```
    
    MSVC:
    ```
    warning C4133: 'function': incompatible types - from 'char **' to 'uchar **'
    ```
    tobil4sk committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    5f40780 View commit details
    Browse the repository at this point in the history