Преглед изворни кода

* Fix a compilation warning by pretending to use seterrno()'s argument

even when it isn't.
tags/v0.99.beta14
Sam Hocevar sam пре 18 година
родитељ
комит
afaf0a0a0c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      common.h

+ 1
- 1
common.h Прегледај датотеку

@@ -39,7 +39,7 @@ typedef unsigned long int uintptr_t;
static inline void seterrno(int e) { errno = e; }
static inline int geterrno(void) { return errno; }
#else
# define seterrno(x) do {} while(0)
# define seterrno(x) do { (void)(x); } while(0)
# define geterrno(x) 0
#endif



Loading…
Откажи
Сачувај