Skip to content

Commit

Permalink
lib/vsprintf.c: add missing EXPORT_SYMBOL(simple_strtoll)
Browse files Browse the repository at this point in the history
Add a missing EXPORT_SYMBOL.

I must be the first person that wants to use this function :-)

Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
hverkuil authored and torvalds committed Apr 24, 2010
1 parent 81fa08f commit 98d5ce0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/vsprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ long long simple_strtoll(const char *cp, char **endp, unsigned int base)

return simple_strtoull(cp, endp, base);
}
EXPORT_SYMBOL(simple_strtoll);

/**
* strict_strtoul - convert a string to an unsigned long strictly
Expand Down

0 comments on commit 98d5ce0

Please sign in to comment.