seq-compiler 7.7.1

Compiler for the Seq programming language
Documentation
1
2
3
4
5
6
7
8
9
10
//! Runtime declarations for TLS operations.

use super::RuntimeDecl;

pub(super) static DECLS: &[RuntimeDecl] = &[RuntimeDecl {
    decl: "declare ptr @patch_seq_tls_client(ptr)",
    category: Some("; TLS operations"),
}];

pub(super) static SYMBOLS: &[(&str, &str)] = &[("net.tls.client", "patch_seq_tls_client")];