comparison dyncall/dyncall_callvm_sparc64.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_sparc64.c 5 File: dyncall/dyncall_callvm_sparc64.c
6 Description: Call VM for sparc64 (v9) ABI. 6 Description: Call VM for sparc64 (v9) ABI.
7 License: 7 License:
8 8
9 Copyright (c) 2011-2018 Daniel Adler <dadler@uni-goettingen.de> 9 Copyright (c) 2011-2020 Daniel Adler <dadler@uni-goettingen.de>
10 10
11 Permission to use, copy, modify, and distribute this software for any 11 Permission to use, copy, modify, and distribute this software for any
12 purpose with or without fee is hereby granted, provided that the above 12 purpose with or without fee is hereby granted, provided that the above
13 copyright notice and this permission notice appear in all copies. 13 copyright notice and this permission notice appear in all copies.
14 14
23 */ 23 */
24 24
25 25
26 26
27 #include "dyncall_callvm_sparc64.h" 27 #include "dyncall_callvm_sparc64.h"
28 #include "dyncall_call_sparc64.h"
29 #include "dyncall_alloc.h" 28 #include "dyncall_alloc.h"
29
30
31 void dcCall_v9(DCCallVM* vm, DCpointer target);
32
30 33
31 /* Reset argument buffer. */ 34 /* Reset argument buffer. */
32 static void dc_callvm_reset_v9(DCCallVM* in_self) 35 static void dc_callvm_reset_v9(DCCallVM* in_self)
33 { 36 {
34 DCCallVM_v9* self = (DCCallVM_v9*)in_self; 37 DCCallVM_v9* self = (DCCallVM_v9*)in_self;