]> git.sesse.net Git - vlc/blobdiff - src/extras/libc.c
Fix another series of HAVE_ dependencies (string replacement functions mostly).
[vlc] / src / extras / libc.c
index 4309aefa9feea9173bbfbc7e3ccf0f8987299c51..826cc578549e7cc190c545a4b531e4e49ee2274f 100644 (file)
@@ -375,8 +375,7 @@ int64_t vlc_atoll( const char *nptr )
 /*****************************************************************************
  * lldiv: returns quotient and remainder
  *****************************************************************************/
-#if defined(SYS_BEOS) \
- || (defined (__FreeBSD__) && (__FreeBSD__ < 5))
+#if !defined( HAVE_LLDIV )
 lldiv_t vlc_lldiv( long long numer, long long denom )
 {
     lldiv_t d;