mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
refactor: follow style guide
This commit is contained in:
@@ -23,9 +23,9 @@
|
||||
|
||||
#include "nvim/func_attr.h"
|
||||
|
||||
typedef struct _queue {
|
||||
struct _queue *next;
|
||||
struct _queue *prev;
|
||||
typedef struct queue {
|
||||
struct queue *next;
|
||||
struct queue *prev;
|
||||
} QUEUE;
|
||||
|
||||
// Public macros.
|
||||
|
Reference in New Issue
Block a user