Added files which were missed by the last commit.

This commit is contained in:
Simon Brooke 2026-05-04 13:15:30 +01:00
parent 8c5dccb5c8
commit f4303247b9
4 changed files with 48 additions and 1 deletions

0
src/c/ops/dump.h Normal file
View file

View 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
View 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