Skip to content

Commit

Permalink
Fix msvc build
Browse files Browse the repository at this point in the history
  • Loading branch information
red0124 committed Feb 17, 2024
1 parent f04ede3 commit 7062888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ss/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ inline ssize_t get_line_file(char** lineptr, size_t* n, FILE* stream) {
}
#else
using ssize_t = int64_t;
inline ssize_t get_line(char** lineptr, size_t* n, FILE* stream) {
inline ssize_t get_line_file(char** lineptr, size_t* n, FILE* stream) {
size_t pos;
int c;

Expand Down

0 comments on commit 7062888

Please sign in to comment.