Skip to content

Commit

Permalink
mx_util: Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed May 20, 2015
1 parent e51a023 commit d01b8e5
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions mx_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ inline int mx_strtoll(char *str, signed long long int *to)
int mx_strtoui(char *str, unsigned int *to)
{
unsigned long int ul;
char *end;
int res;

assert(str);
Expand All @@ -226,7 +225,6 @@ int mx_strtoui(char *str, unsigned int *to)
int mx_strtou8(char *str, uint8_t *to)
{
unsigned long int ul;
char *end;
int res;

assert(str);
Expand All @@ -247,7 +245,6 @@ int mx_strtou8(char *str, uint8_t *to)
int mx_strtou16(char *str, uint16_t *to)
{
unsigned long int ul;
char *end;
int res;

assert(str);
Expand All @@ -268,7 +265,6 @@ int mx_strtou16(char *str, uint16_t *to)
int mx_strtou32(char *str, uint32_t *to)
{
unsigned long int ul;
char *end;
int res;

assert(str);
Expand All @@ -289,7 +285,6 @@ int mx_strtou32(char *str, uint32_t *to)
int mx_strtou64(char *str, uint64_t *to)
{
unsigned long long int ull;
char *end;
int res;

assert(str);
Expand All @@ -312,7 +307,6 @@ int mx_strtou64(char *str, uint64_t *to)
int mx_strtoi(char *str, signed int *to)
{
signed long int l;
char *end;
int res;

assert(str);
Expand All @@ -333,7 +327,6 @@ int mx_strtoi(char *str, signed int *to)
int mx_strtoi8(char *str, int8_t *to)
{
signed long int l;
char *end;
int res;

assert(str);
Expand All @@ -354,7 +347,6 @@ int mx_strtoi8(char *str, int8_t *to)
int mx_strtoi16(char *str, int16_t *to)
{
signed long int l;
char *end;
int res;

assert(str);
Expand All @@ -375,7 +367,6 @@ int mx_strtoi16(char *str, int16_t *to)
int mx_strtoi32(char *str, int32_t *to)
{
signed long int l;
char *end;
int res;

assert(str);
Expand All @@ -396,7 +387,6 @@ int mx_strtoi32(char *str, int32_t *to)
int mx_strtoi64(char *str, int64_t *to)
{
signed long long int ll;
char *end;
int res;

assert(str);
Expand Down

0 comments on commit d01b8e5

Please sign in to comment.