summaryrefslogtreecommitdiff
path: root/ext/ffi
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ffi')
-rw-r--r--ext/ffi/00_ffi.js2
-rw-r--r--ext/ffi/Cargo.toml2
-rw-r--r--ext/ffi/call.rs2
-rw-r--r--ext/ffi/callback.rs2
-rw-r--r--ext/ffi/dlfcn.rs2
-rw-r--r--ext/ffi/ir.rs2
-rw-r--r--ext/ffi/lib.rs2
-rw-r--r--ext/ffi/repr.rs2
-rw-r--r--ext/ffi/static.rs2
-rw-r--r--ext/ffi/symbol.rs2
-rw-r--r--ext/ffi/turbocall.rs2
11 files changed, 11 insertions, 11 deletions
diff --git a/ext/ffi/00_ffi.js b/ext/ffi/00_ffi.js
index 2dc6bb5e0..66ac315b3 100644
--- a/ext/ffi/00_ffi.js
+++ b/ext/ffi/00_ffi.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index 195cb7bdd..78fe9e406 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_ffi"
diff --git a/ext/ffi/call.rs b/ext/ffi/call.rs
index 4a913c0e0..2479c3092 100644
--- a/ext/ffi/call.rs
+++ b/ext/ffi/call.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::callback::PtrSymbol;
use crate::check_unstable2;
diff --git a/ext/ffi/callback.rs b/ext/ffi/callback.rs
index b63bb8eab..b9398c790 100644
--- a/ext/ffi/callback.rs
+++ b/ext/ffi/callback.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::check_unstable;
use crate::symbol::NativeType;
diff --git a/ext/ffi/dlfcn.rs b/ext/ffi/dlfcn.rs
index da47dcd47..5caf95ef2 100644
--- a/ext/ffi/dlfcn.rs
+++ b/ext/ffi/dlfcn.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::check_unstable;
use crate::symbol::NativeType;
diff --git a/ext/ffi/ir.rs b/ext/ffi/ir.rs
index ee67171a4..df13f0611 100644
--- a/ext/ffi/ir.rs
+++ b/ext/ffi/ir.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::symbol::NativeType;
use crate::MAX_SAFE_INTEGER;
diff --git a/ext/ffi/lib.rs b/ext/ffi/lib.rs
index f3a906505..0ae01dcd6 100644
--- a/ext/ffi/lib.rs
+++ b/ext/ffi/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::futures::channel::mpsc;
diff --git a/ext/ffi/repr.rs b/ext/ffi/repr.rs
index 20b98154c..db03479dc 100644
--- a/ext/ffi/repr.rs
+++ b/ext/ffi/repr.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::check_unstable;
use crate::FfiPermissions;
diff --git a/ext/ffi/static.rs b/ext/ffi/static.rs
index aa0bb325c..87c09dbfb 100644
--- a/ext/ffi/static.rs
+++ b/ext/ffi/static.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::dlfcn::DynamicLibraryResource;
use crate::symbol::NativeType;
diff --git a/ext/ffi/symbol.rs b/ext/ffi/symbol.rs
index 0248c1fff..39466560b 100644
--- a/ext/ffi/symbol.rs
+++ b/ext/ffi/symbol.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
/// Defines the accepted types that can be used as
/// parameters and return values in FFI.
diff --git a/ext/ffi/turbocall.rs b/ext/ffi/turbocall.rs
index bbe29238a..e8858df86 100644
--- a/ext/ffi/turbocall.rs
+++ b/ext/ffi/turbocall.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::cmp::max;
use std::ffi::c_void;