Added files which were missed by the last commit.
This commit is contained in:
parent
8c5dccb5c8
commit
f4303247b9
4 changed files with 48 additions and 1 deletions
0
src/c/ops/dump.h
Normal file
0
src/c/ops/dump.h
Normal file
|
|
@ -16,7 +16,6 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
|
||||
#include "debug.h"
|
||||
|
||||
#include "environment/privileged_keywords.h"
|
||||
|
|
|
|||
22
src/c/payloads/float.h
Normal file
22
src/c/payloads/float.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* payloads/float.h
|
||||
*
|
||||
* A floating point number.
|
||||
*
|
||||
* (c) 2026 Simon Brooke <simon@journeyman.cc>
|
||||
* Licensed under GPL version 2.0, or, at your option, any later version.
|
||||
*/
|
||||
|
||||
#ifndef __psse_payloads_float_h
|
||||
#define __psse_payloads_float_h
|
||||
|
||||
|
||||
/**
|
||||
* @brief a floating point number. At this stage it's only 64 bits wide, but
|
||||
* we could/should use the full 128 bits.
|
||||
*/
|
||||
struct float_payload {
|
||||
long double value;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue