Moved Curl_rand() and Curl_srand() code from formdata.c and formdata.h

into curl_rand.c and curl_rand.h
This commit is contained in:
Yang Tse 2009-09-17 14:23:27 +00:00
parent be5c815f63
commit f2f45339dc
12 changed files with 119 additions and 45 deletions

View file

@ -13,7 +13,7 @@ objs = o.base64 o.connect o.cookie o.dict \
o.security o.select o.sendf o.speedcheck o.ssluse \
o.strequal o.strtok o.telnet o.timeval \
o.transfer o.url o.version o.strtoofft o.sslgen o.gtls \
o.rawstr o.curl_addrinfo o.slist o.nonblock
o.rawstr o.curl_addrinfo o.slist o.nonblock o.curl_rand
# Compile options:
linkopts = -o libcurl
@ -36,6 +36,9 @@ o.cookie: c.cookie
o.curl_addrinfo: c.curl_addrinfo
gcc $(compileropts) -c -o curl_addrinfo.o c.curl_addrinfo
o.curl_rand: c.curl_rand
gcc $(compileropts) -c -o curl_rand.o c.curl_rand
o.dict: c.dict
gcc $(compileropts) -c -o dict.o c.dict