Skip to content

Commit

Permalink
Contribution attribution comment change.
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalroz committed Feb 11, 2022
1 parent 497b205 commit 3a6d95f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/printf/printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
*
* @note Others have made smaller contributions to this file: see the
* contributors page at https://github.com/eyalroz/printf/graphs/contributors
* or ask one of the authors.
* or ask one of the authors. The original code for exponential specifiers was
* contributed by Martijn Jasperse <m.jasperse@gmail.com>.
*
* @brief Small stand-alone implementation of the printf family of functions
* (`(v)printf`, `(v)s(n)printf` etc., geared towards use on embedded systems with
Expand Down Expand Up @@ -819,7 +820,6 @@ static double pow10_of_int(int floored_exp10)
return dwba.F;
}

// internal ftoa variant for exponential floating-point type, contributed by Martijn Jasperse <m.jasperse@gmail.com>
static void print_exponential_number(output_gadget_t* output, double number, printf_size_t precision, printf_size_t width, printf_flags_t flags, char* buf, printf_size_t len)
{
const bool negative = get_sign_bit(number);
Expand Down

0 comments on commit 3a6d95f

Please sign in to comment.