1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

The definition of 'locale_t' is now based upon a pointer to an "anonymous" structure

Thanks go to sacredbanana for the fix.
This commit is contained in:
obarthel
2025-07-12 12:30:59 +02:00
parent f49877920e
commit dfa3c412d9

View File

@ -1,10 +1,8 @@
/*
* $Id: locale.h,v 1.5 2006-01-08 12:06:14 obarthel Exp $
*
* :ts=4
*
* Portable ISO 'C' (1994) runtime library for the Amiga computer
* Copyright (c) 2002-2015 by Olaf Barthel <obarthel (at) gmx.net>
* Copyright (c) 2002-2025 by Olaf Barthel <obarthel (at) gmx.net>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -59,7 +57,10 @@ extern "C" {
/****************************************************************************/
typedef void *locale_t;
/* Forward declaration */
struct __locale_t;
typedef struct __locale_t *locale_t;
/****************************************************************************/