mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-23 16:59:54 +08:00
More architecture-specific fenceposting.
This commit is contained in:
parent
d71e9ed5f6
commit
103863ca24
@ -3323,9 +3323,13 @@ NCX_PUTN(ulonglong, uint)
|
||||
*/
|
||||
|
||||
/* text */
|
||||
|
||||
#ifdef __arm__
|
||||
int
|
||||
ncx_getn_text(const void **xpp, size_t nelems, signed char *tp)
|
||||
#else
|
||||
int
|
||||
ncx_getn_text(const void **xpp, size_t nelems, char *tp)
|
||||
#endif
|
||||
{
|
||||
NCX_GETN_Byte_Body
|
||||
}
|
||||
@ -3342,7 +3346,7 @@ NCX_PAD_GETN_Byte_Body
|
||||
}
|
||||
|
||||
#ifdef __arm__
|
||||
int ncx_putn_text(void **xp, size_t nelems, const signed char *tp)
|
||||
int ncx_putn_text(void **xpp, size_t nelems, const signed char *tp)
|
||||
#else
|
||||
int
|
||||
ncx_putn_text(void **xpp, size_t nelems, const char *tp)
|
||||
@ -3351,8 +3355,13 @@ ncx_putn_text(void **xpp, size_t nelems, const char *tp)
|
||||
NCX_PUTN_Byte_Body
|
||||
}
|
||||
|
||||
#ifdef __arm__
|
||||
int
|
||||
ncx_pad_putn_text(void **xpp, size_t nelems, const signed char *tp)
|
||||
#else
|
||||
int
|
||||
ncx_pad_putn_text(void **xpp, size_t nelems, const char *tp)
|
||||
#endif
|
||||
{
|
||||
NCX_PAD_PUTN_Byte_Body
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user