1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

remove old and unused @ syntax

This commit is contained in:
Alexander Medvednikov
2019-06-23 17:03:19 +02:00
parent 8b08bf636a
commit a401b5e242
2 changed files with 5 additions and 35 deletions

View File

@ -5,12 +5,14 @@
module http
#include <curl/curl.h>
#flag windows -I/usr/local/opt/curl/include
#flag darwin -lcurl
#flag windows -lcurl
#flag linux -lcurl
@size_t kek
@CURL* curl_easy_init
fn C.curl_easy_init() *C.CURL
fn foo() {}
type wsfn fn (s string, ptr voidptr)
struct MemoryStruct {
@ -38,8 +40,6 @@ import const (
CURLE_OK
)
// type C.CURLcode {
// }
fn C.curl_easy_strerror(curl voidptr) byteptr
fn C.curl_easy_perform(curl voidptr) C.CURLcode