Skip to content

Commit

Permalink
curl_endian: remove Curl_write64_le from header
Browse files Browse the repository at this point in the history
The actual function was already removed in 4331c6d.

See curl#7280
  • Loading branch information
ryandesign committed Nov 22, 2022
1 parent 66ca8ac commit 2778505
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions lib/curl_endian.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,4 @@ unsigned int Curl_read32_le(const unsigned char *buf);
/* Converts a 16-bit integer from big endian */
unsigned short Curl_read16_be(const unsigned char *buf);

#if (SIZEOF_CURL_OFF_T > 4)
/* Converts a 64-bit integer to little endian */
#if defined(HAVE_LONGLONG)
void Curl_write64_le(const long long value, unsigned char *buffer);
#else
void Curl_write64_le(const __int64 value, unsigned char *buffer);
#endif
#endif

#endif /* HEADER_CURL_ENDIAN_H */

0 comments on commit 2778505

Please sign in to comment.