Skip to content

Commit

Permalink
Real variadic function of fprintf().
Browse files Browse the repository at this point in the history
  • Loading branch information
eerimoq committed Jul 2, 2020
1 parent e41e4b0 commit d9872d7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions nala/real_variadic_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,14 @@ int fcntl_mock_va_arg_real(int fd, int cmd, va_list __nala_va_list)
}

// NALA_REAL_VARIADIC_FUNCTION_END

// NALA_REAL_VARIADIC_FUNCTION_BEGIN fprintf

int fprintf_mock_va_arg_real(FILE *stream,
const char *format,
va_list __nala_va_list)
{
return (vfprintf(stream, format, __nala_va_list));
}

// NALA_REAL_VARIADIC_FUNCTION_END
2 changes: 1 addition & 1 deletion nala/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.175.1'
__version__ = '0.176.0'

0 comments on commit d9872d7

Please sign in to comment.