comparison dyncall/dyncall_callvm_mips_eabi.c @ 366:ad5f9803f52f

- removal of some unnecessary headers that only contained internally used forward declarations, so no need to have them
author Tassilo Philipp
date Wed, 15 Apr 2020 14:57:23 +0200
parents f5577f6bf97a
children ddfb9577a00e
comparison
equal deleted inserted replaced
365:1d03a3a4220d 366:ad5f9803f52f
4 Library: dyncall 4 Library: dyncall
5 File: dyncall/dyncall_callvm_mips_eabi.c 5 File: dyncall/dyncall_callvm_mips_eabi.c
6 Description: Implementation of Call VM for mips "eabi" abi. 6 Description: Implementation of Call VM for mips "eabi" abi.
7 License: 7 License:
8 8
9 Copyright (c) 2007-2018 Daniel Adler <dadler@uni-goettingen.de>, 9 Copyright (c) 2007-2020 Daniel Adler <dadler@uni-goettingen.de>,
10 Tassilo Philipp <tphilipp@potion-studios.com> 10 Tassilo Philipp <tphilipp@potion-studios.com>
11 11
12 Permission to use, copy, modify, and distribute this software for any 12 Permission to use, copy, modify, and distribute this software for any
13 purpose with or without fee is hereby granted, provided that the above 13 purpose with or without fee is hereby granted, provided that the above
14 copyright notice and this permission notice appear in all copies. 14 copyright notice and this permission notice appear in all copies.
25 25
26 26
27 27
28 #include "dyncall_callvm_mips_eabi.h" 28 #include "dyncall_callvm_mips_eabi.h"
29 #include "dyncall_alloc.h" 29 #include "dyncall_alloc.h"
30
31
32 void dcCall_mips_eabi(DCpointer target, DCRegData_mips_eabi* regdata, DCsize stksize, DCpointer stkdata);
33
30 34
31 static void dc_callvm_reset_mips_eabi(DCCallVM* in_self) 35 static void dc_callvm_reset_mips_eabi(DCCallVM* in_self)
32 { 36 {
33 DCCallVM_mips_eabi* self = (DCCallVM_mips_eabi*)in_self; 37 DCCallVM_mips_eabi* self = (DCCallVM_mips_eabi*)in_self;
34 dcVecReset(&self->mVecHead); 38 dcVecReset(&self->mVecHead);