dmac: fix name mangling

This commit is contained in:
Diamond Rivero
2025-03-19 20:45:10 +08:00
committed by GitHub
parent 166bd49366
commit 6926e59030

View File

@@ -8,8 +8,15 @@
* Copyright (c) 2016 173210 <root.3.173210@live.com> * Copyright (c) 2016 173210 <root.3.173210@live.com>
*/ */
#ifndef __DMAC_H__
#define __DMAC_H__
#include <psptypes.h> #include <psptypes.h>
#ifdef __cplusplus
extern "C" {
#endif
/** /**
* Copy data in memory using DMAC * Copy data in memory using DMAC
* *
@@ -22,3 +29,9 @@
int sceDmacMemcpy(void *dst, const void *src, SceSize n); int sceDmacMemcpy(void *dst, const void *src, SceSize n);
int sceDmacTryMemcpy(void *dst, const void *src, SceSize n); int sceDmacTryMemcpy(void *dst, const void *src, SceSize n);
#ifdef __cplusplus
}
#endif
#endif