cosmopolitan/tool/curl/cmd.c
Ronsor f6b3019796
Make curl example into a complete tool (#706)
You can now handily use `curl` with popen()/system() by
placing `STATIC_YOINK("_curl")` in your main source file.
2022-12-21 16:12:02 -08:00

5 lines
93 B
C

#include "tool/curl/cmd.h"
int main(int argc, char *argv[]) {
return _curl(argc, argv);
}