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 7cc3bb982..9dd675f88 100644
--- a/ext/ffi/00_ffi.js
+++ b/ext/ffi/00_ffi.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { core, primordials } from "ext:core/mod.js";
const ops = core.ops;
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index 5e5c8f954..3e7cb6d64 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2024 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 d0162d7d5..726f17fad 100644
--- a/ext/ffi/call.rs
+++ b/ext/ffi/call.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::callback::PtrSymbol;
use crate::check_unstable;
diff --git a/ext/ffi/callback.rs b/ext/ffi/callback.rs
index ea18189d8..556d21525 100644
--- a/ext/ffi/callback.rs
+++ b/ext/ffi/callback.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 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 74a8d83d4..e8dd1c36f 100644
--- a/ext/ffi/dlfcn.rs
+++ b/ext/ffi/dlfcn.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::check_unstable;
use crate::ir::out_buffer_as_ptr;
diff --git a/ext/ffi/ir.rs b/ext/ffi/ir.rs
index 52709d2d4..0255f2a25 100644
--- a/ext/ffi/ir.rs
+++ b/ext/ffi/ir.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 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 bb403d6c0..c678a10b5 100644
--- a/ext/ffi/lib.rs
+++ b/ext/ffi/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::OpState;
diff --git a/ext/ffi/repr.rs b/ext/ffi/repr.rs
index 426affdb5..9208861cb 100644
--- a/ext/ffi/repr.rs
+++ b/ext/ffi/repr.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 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 ba1364d4f..3920d885e 100644
--- a/ext/ffi/static.rs
+++ b/ext/ffi/static.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 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 bfe150f78..24ce85377 100644
--- a/ext/ffi/symbol.rs
+++ b/ext/ffi/symbol.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::error::type_error;
use deno_core::error::AnyError;
diff --git a/ext/ffi/turbocall.rs b/ext/ffi/turbocall.rs
index f25f9274f..c0bb06716 100644
--- a/ext/ffi/turbocall.rs
+++ b/ext/ffi/turbocall.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::cmp::max;
use std::ffi::c_void;