tdf#143148 Use pragma once instead of include guards

Change-Id: I1c175753242783d83b5b1edc9b8b4cee2a5bd277
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148449
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
This commit is contained in:
Yousef_Rabia 2023-03-08 00:45:42 +02:00 committed by Ilmari Lauhakangas
parent b48371ba61
commit ddd2e00278

View File

@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SAL_OSL_UNX_SYSTEM_HXX
#define INCLUDED_SAL_OSL_UNX_SYSTEM_HXX
#pragma once
#include <stdio.h>
#include <stdlib.h>
@ -387,6 +386,4 @@ struct tm *gmtime_r(const time_t *timep, struct tm *buffer);
#endif /* !defined(FREEBSD) */
#endif
#endif // INCLUDED_SAL_OSL_UNX_SYSTEM_H
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */