diff options
Diffstat (limited to 'src/lib/util/opresolv.h')
-rw-r--r-- | src/lib/util/opresolv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util/opresolv.h b/src/lib/util/opresolv.h index 52030dc4336..c53898a17f4 100644 --- a/src/lib/util/opresolv.h +++ b/src/lib/util/opresolv.h @@ -43,7 +43,7 @@ #pragma once -#include <stdlib.h> +#include <cstdlib> #include <vector> #include <string> @@ -109,7 +109,7 @@ public: } // accessors - const option_type type() const { return m_type; } + option_type type() const { return m_type; } int parameter() const { return m_parameter; } const char *identifier() const { return m_identifier; } const char *display_name() const { return m_display_name; } |