On 31 May 2026, at 13:38, Branko Čibej wrote:

We can't use snprintf() because it's C99. Subversion is written in C90.

You could always do:

#ifdef __APPLE__ || (__STDC_VERSION__ >= 199901L)
  snprintf(...)
#else
  sprintf(...)
#endif

I would not be surprised if Apple removes sprintf() one day, this way you'd be ready.

Reply via email to