Partially format header files

This commit is contained in:
Roman971
2020-03-22 22:50:11 +01:00
parent 8cfe7cce9f
commit 51290f6126
417 changed files with 832 additions and 1445 deletions
+2 -4
View File
@@ -1,14 +1,12 @@
#ifndef _STDLIB_H_
#define _STDLIB_H_
typedef struct lldiv_t
{
typedef struct lldiv_t {
long long quot;
long long rem;
} lldiv_t;
typedef struct ldiv_t
{
typedef struct ldiv_t {
long quot;
long rem;
} ldiv_t;